$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r79928 - trunk/boost/algorithm/cxx11
From: marshall_at_[hidden]
Date: 2012-08-08 12:27:17
Author: marshall
Date: 2012-08-08 12:27:17 EDT (Wed, 08 Aug 2012)
New Revision: 79928
URL: http://svn.boost.org/trac/boost/changeset/79928
Log:
Fixed typos in comments; no functionality; Refs #7210
Text files modified: 
   trunk/boost/algorithm/cxx11/is_partitioned.hpp |     2 +-                                      
   trunk/boost/algorithm/cxx11/is_sorted.hpp      |     2 +-                                      
   2 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/boost/algorithm/cxx11/is_partitioned.hpp
==============================================================================
--- trunk/boost/algorithm/cxx11/is_partitioned.hpp	(original)
+++ trunk/boost/algorithm/cxx11/is_partitioned.hpp	2012-08-08 12:27:17 EDT (Wed, 08 Aug 2012)
@@ -20,7 +20,7 @@
 namespace boost { namespace algorithm {
 
 #if __cplusplus >= 201103L
-//  Use the C++11 versions of iota if it is available
+//  Use the C++11 versions of is_partitioned if it is available
 using std::is_partitioned;      // Section 25.3.13
 #else
 /// \fn is_partitioned ( InputIterator first, InputIterator last, UnaryPredicate p )
Modified: trunk/boost/algorithm/cxx11/is_sorted.hpp
==============================================================================
--- trunk/boost/algorithm/cxx11/is_sorted.hpp	(original)
+++ trunk/boost/algorithm/cxx11/is_sorted.hpp	2012-08-08 12:27:17 EDT (Wed, 08 Aug 2012)
@@ -27,7 +27,7 @@
 namespace boost { namespace algorithm {
 
 #if __cplusplus >= 201103L
-//  Use the C++11 versions of iota if it is available
+//  Use the C++11 versions of is_sorted/is_sorted_until if they are available
 using std::is_sorted_until; // Section 25.4.1.5
 using std::is_sorted;       // Section 25.4.1.5
 #else