From 6d0b2d4f8a4a3cdb0b89eb4c3f13b6ec481ace3b Mon Sep 17 00:00:00 2001 From: "Jeffrey Lee Hellrung, Jr." Date: Tue, 2 Oct 2012 13:30:46 +0000 Subject: [PATCH] Merging trunk to release; fixing typo in comments of iterator_facade. [SVN r80818] --- include/boost/iterator/iterator_facade.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/iterator/iterator_facade.hpp b/include/boost/iterator/iterator_facade.hpp index 1ca0902..d84b402 100644 --- a/include/boost/iterator/iterator_facade.hpp +++ b/include/boost/iterator/iterator_facade.hpp @@ -147,7 +147,7 @@ namespace boost // Returning a mutable reference allows nonsense like // (*r++).mutate(), but it imposes fewer assumptions about the - // behavior of the value_type. In particular, recall taht + // behavior of the value_type. In particular, recall that // (*r).mutate() is legal if operator* returns by value. value_type& operator*() const @@ -294,7 +294,7 @@ namespace boost // operator->() needs special support for input iterators to strictly meet the // standard's requirements. If *i is not a reference type, we must still - // produce a lvalue to which a pointer can be formed. We do that by + // produce an lvalue to which a pointer can be formed. We do that by // returning a proxy object containing an instance of the reference object. template struct operator_arrow_dispatch // proxy references