Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r80619 - trunk/boost/algorithm/cxx11
From: marshall_at_[hidden]
Date: 2012-09-21 10:53:36


Author: marshall
Date: 2012-09-21 10:53:35 EDT (Fri, 21 Sep 2012)
New Revision: 80619
URL: http://svn.boost.org/trac/boost/changeset/80619

Log:
Fix typos in the comments. Refs #7401. Thanks to Hideaki Takei for the catch
Text files modified:
   trunk/boost/algorithm/cxx11/is_permutation.hpp | 8 ++++----
   1 files changed, 4 insertions(+), 4 deletions(-)

Modified: trunk/boost/algorithm/cxx11/is_permutation.hpp
==============================================================================
--- trunk/boost/algorithm/cxx11/is_permutation.hpp (original)
+++ trunk/boost/algorithm/cxx11/is_permutation.hpp 2012-09-21 10:53:35 EDT (Fri, 21 Sep 2012)
@@ -46,7 +46,7 @@
 
 
 /// \fn is_permutation ( ForwardIterator1 first, ForwardIterator1 last, ForwardIterator2 first2, BinaryPredicate p )
-/// \brief Tests to see if a the sequence [first,last) is a permutation of the sequence starting at first2
+/// \brief Tests to see if the sequence [first,last) is a permutation of the sequence starting at first2
 ///
 /// \param first The start of the input sequence
 /// \param last One past the end of the input sequence
@@ -88,7 +88,7 @@
 }
 
 /// \fn is_permutation ( ForwardIterator1 first, ForwardIterator1 last, ForwardIterator2 first2 )
-/// \brief Tests to see if a the sequence [first,last) is a permutation of the sequence starting at first2
+/// \brief Tests to see if the sequence [first,last) is a permutation of the sequence starting at first2
 ///
 /// \param first The start of the input sequence
 /// \param last One past the end of the input sequence
@@ -108,7 +108,7 @@
 #endif
 
 /// \fn is_permutation ( const Range &r, ForwardIterator first2 )
-/// \brief Tests to see if a the sequence [first,last) is a permutation of the sequence starting at first2
+/// \brief Tests to see if the sequence [first,last) is a permutation of the sequence starting at first2
 ///
 /// \param r The input range
 /// \param first2 The start of the second sequence
@@ -119,7 +119,7 @@
 }
 
 /// \fn is_permutation ( const Range &r, ForwardIterator first2, BinaryPredicate pred )
-/// \brief Tests to see if a the sequence [first,last) is a permutation of the sequence starting at first2
+/// \brief Tests to see if the sequence [first,last) is a permutation of the sequence starting at first2
 ///
 /// \param r The input range
 /// \param first2 The start of the second sequence


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk