From f4336ec6932542068ef82a76ea55c8d67176a94c Mon Sep 17 00:00:00 2001 From: Ronald Garcia Date: Mon, 12 Aug 2002 20:47:54 +0000 Subject: [PATCH] fixed typo. [SVN r14798] --- transform_iterator.htm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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