diff --git a/transform_iterator.htm b/transform_iterator.htm index 1e5aa8d..4b3dce3 100644 --- a/transform_iterator.htm +++ b/transform_iterator.htm @@ -19,7 +19,7 @@ Defined in header
The transform iterator adaptor augments an iterator by applying some -function object to the result of dereferencing the iterator. Another +function object to the result of dereferencing the iterator. In other words, the operator* of the transform iterator first dereferences the base iterator, passes the result of this to the function object, and then returns the result. The following