$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r84648 - trunk/libs/algorithm/doc
From: marshall_at_[hidden]
Date: 2013-06-05 16:24:00
Author: marshall
Date: 2013-06-05 16:24:00 EDT (Wed, 05 Jun 2013)
New Revision: 84648
URL: http://svn.boost.org/trac/boost/changeset/84648
Log:
Fixed some mixed singular/plural bits
Text files modified: 
   trunk/libs/algorithm/doc/is_permutation.qbk |     6 +++---                                  
   1 files changed, 3 insertions(+), 3 deletions(-)
Modified: trunk/libs/algorithm/doc/is_permutation.qbk
==============================================================================
--- trunk/libs/algorithm/doc/is_permutation.qbk	Wed Jun  5 16:16:21 2013	(r84647)
+++ trunk/libs/algorithm/doc/is_permutation.qbk	2013-06-05 16:24:00 EDT (Wed, 05 Jun 2013)	(r84648)
@@ -71,11 +71,11 @@
 
 [heading Notes]
 
-* The three iterator versions of the routine `is_permutation` is part of the C++11 standard. When compiled using a C++11 implementation, the implementation from the standard library will be used.
+* The three iterator versions of the routine `is_permutation` are part of the C++11 standard. When compiled using a C++11 implementation, the implementation from the standard library will be used.
 
-* The four iterator versions of the routine `is_permutation` is part of the proposed C++14 standard. When C++14 standard libraries become available, the implementation should be changed to use the implementation from the standard library (if available).
+* The four iterator versions of the routine `is_permutation` are part of the proposed C++14 standard. When C++14 standard libraries become available, the implementation should be changed to use the implementation from the standard library (if available).
 
-* `is_permutation` returns true when passed a pair empty ranges, no matter what predicate is passed to test with. 
+* `is_permutation` returns true when passed a pair of empty ranges, no matter what predicate is passed to test with. 
 
 [endsect]