Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r85397 - trunk/libs/algorithm/doc
From: marshall_at_[hidden]
Date: 2013-08-19 13:52:56


Author: marshall
Date: 2013-08-19 13:52:56 EDT (Mon, 19 Aug 2013)
New Revision: 85397
URL: http://svn.boost.org/trac/boost/changeset/85397

Log:
Fixed typo "one_of_value" --> "one_of_equal". Refs #9010

Text files modified:
   trunk/libs/algorithm/doc/one_of.qbk | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: trunk/libs/algorithm/doc/one_of.qbk
==============================================================================
--- trunk/libs/algorithm/doc/one_of.qbk Mon Aug 19 12:21:19 2013 (r85396)
+++ trunk/libs/algorithm/doc/one_of.qbk 2013-08-19 13:52:56 EDT (Mon, 19 Aug 2013) (r85397)
@@ -75,7 +75,7 @@
 
 * `one_of` and `one_of_equal` both return false for empty ranges, no matter what is passed to test against.
 
-* The second parameter to `one_of_value` is a template parameter, rather than deduced from the first parameter (`std::iterator_traits<InputIterator>::value_type`) because that allows more flexibility for callers, and takes advantage of built-in comparisons for the type that is pointed to by the iterator. The function is defined to return true if, for one element in the sequence, the expression `*iter == val` evaluates to true (where `iter` is an iterator to each element in the sequence)
+* The second parameter to `one_of_equal` is a template parameter, rather than deduced from the first parameter (`std::iterator_traits<InputIterator>::value_type`) because that allows more flexibility for callers, and takes advantage of built-in comparisons for the type that is pointed to by the iterator. The function is defined to return true if, for one element in the sequence, the expression `*iter == val` evaluates to true (where `iter` is an iterator to each element in the sequence)
 
 [endsect]
 


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