$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: marshall_at_[hidden]
Date: 2008-05-28 15:23:28
Author: marshall
Date: 2008-05-28 15:23:28 EDT (Wed, 28 May 2008)
New Revision: 45876
URL: http://svn.boost.org/trac/boost/changeset/45876
Log:
Fixed typos
Text files modified: 
   sandbox/boost/algorithm/copy.hpp |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: sandbox/boost/algorithm/copy.hpp
==============================================================================
--- sandbox/boost/algorithm/copy.hpp	(original)
+++ sandbox/boost/algorithm/copy.hpp	2008-05-28 15:23:28 EDT (Wed, 28 May 2008)
@@ -171,7 +171,7 @@
 /// \return      The (modified) output iterator
 ///
   template<typename Range, typename O, typename Pred> 
-  O copy_while_backward ( Range range, O res, Pred p ) 
+  O copy_backward_while ( Range range, O res, Pred p ) 
   {
     return copy_backward_while ( boost::begin ( range ), boost::end ( range ), res, p );
   } 
@@ -188,7 +188,7 @@
 // 
 // No range-based version here
 
-/// \fn copy_n ( I first, Size count, O res )
+/// \fn copy_n ( I first, typename iterator_traits<I>::difference_type count, O res )
 /// \brief Copies n elements starting at 'first' into 'res'.
 ///
 /// \param first The start of the input sequence