From Jason Turner

[iterator.concept.output]

Diff to HTML by rtfpessoa

tmp/tmpxt4f1h1v/{from.md → to.md} RENAMED
@@ -25,9 +25,9 @@ be a dereferenceable object of type `I`. `I` and `T` model
25
  ``` cpp
26
  *i = E;
27
  ++i;
28
  ```
29
 
30
- [*Note 2*: Algorithms on output iterators should never attempt to pass
31
- through the same iterator twice. They should be single-pass
32
- algorithms. *end note*]
33
 
 
25
  ``` cpp
26
  *i = E;
27
  ++i;
28
  ```
29
 
30
+ *Recommended practice:* The implementation of an algorithm on output
31
+ iterators should never attempt to pass through the same iterator twice;
32
+ such an algorithm should be a single-pass algorithm.
33