diff --git a/include/boost/algorithm/copy.hpp b/include/boost/algorithm/copy.hpp index cbdf1ca..7619ba7 100644 --- a/include/boost/algorithm/copy.hpp +++ b/include/boost/algorithm/copy.hpp @@ -171,7 +171,7 @@ template /// \return The (modified) output iterator /// template - 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 @@ template // // No range-based version here -/// \fn copy_n ( I first, Size count, O res ) +/// \fn copy_n ( I first, typename iterator_traits::difference_type count, O res ) /// \brief Copies n elements starting at 'first' into 'res'. /// /// \param first The start of the input sequence