$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r81308 - in branches/release: . boost boost/proto boost/proto/transform
From: eric_at_[hidden]
Date: 2012-11-12 13:43:19
Author: eric_niebler
Date: 2012-11-12 13:43:18 EST (Mon, 12 Nov 2012)
New Revision: 81308
URL: http://svn.boost.org/trac/boost/changeset/81308
Log:
comment typos, fixes #7487, fixes #7555
Properties modified: 
   branches/release/   (props changed)
   branches/release/boost/   (props changed)
Text files modified: 
   branches/release/boost/proto/traits.hpp              |     2 +-                                      
   branches/release/boost/proto/transform/fold_tree.hpp |     4 ++--                                    
   2 files changed, 3 insertions(+), 3 deletions(-)
Modified: branches/release/boost/proto/traits.hpp
==============================================================================
--- branches/release/boost/proto/traits.hpp	(original)
+++ branches/release/boost/proto/traits.hpp	2012-11-12 13:43:18 EST (Mon, 12 Nov 2012)
@@ -1137,7 +1137,7 @@
     /// \brief Return the value stored within the specified Proto
     /// terminal expression.
     ///
-    /// Return the the value stored within the specified Proto
+    /// Return the value stored within the specified Proto
     /// terminal expression. The value is returned by
     /// reference.
     ///
Modified: branches/release/boost/proto/transform/fold_tree.hpp
==============================================================================
--- branches/release/boost/proto/transform/fold_tree.hpp	(original)
+++ branches/release/boost/proto/transform/fold_tree.hpp	2012-11-12 13:43:18 EST (Mon, 12 Nov 2012)
@@ -69,7 +69,7 @@
     /// template<typename Tag, typename Fun>
     /// struct recurse_if_
     ///   : if_<
-    ///         // If the current node has type type "Tag" ...
+    ///         // If the current node has type "Tag" ...
     ///         is_same<tag_of<_>, Tag>()
     ///         // ... recurse, otherwise ...
     ///       , fold<_, _state, recurse_if_<Tag, Fun> >
@@ -124,7 +124,7 @@
     /// template<typename Tag, typename Fun>
     /// struct recurse_if_
     ///   : if_<
-    ///         // If the current node has type type "Tag" ...
+    ///         // If the current node has type "Tag" ...
     ///         is_same<tag_of<_>, Tag>()
     ///         // ... recurse, otherwise ...
     ///       , reverse_fold<_, _state, recurse_if_<Tag, Fun> >