diff --git a/doc/algorithm.qbk b/doc/algorithm.qbk index f47fce5c..682d5035 100644 --- a/doc/algorithm.qbk +++ b/doc/algorithm.qbk @@ -1722,7 +1722,7 @@ Takes 2 sequences and returns a sequence containing the elements of the first fo template< typename LhSequence, typename RhSequence> - typename __result_of_join__::type join(LhSequence const& lhs, RhSequence const& rhs); + typename __result_of_join__::type join(LhSequence const& lhs, RhSequence const& rhs); [table Parameters [[Parameter][Requirement][Description]] @@ -1767,7 +1767,7 @@ Zips sequences together to form a single sequence, whose members are tuples of t ... typename SequenceN > - typename __result_of_zip__::type + typename __result_of_zip__::type zip(Sequence1 const& seq1, Sequence2 const& seq2, ... SequenceN const& seqN); [table Parameters @@ -1886,7 +1886,7 @@ Returns a new sequence with an element added at the end. typename Sequence, typename T > - typename __result_of_push_back__::type push_back( + typename __result_of_push_back__::type push_back( Sequence const& seq, T const& t); [table Parameters @@ -1927,7 +1927,7 @@ Returns a new sequence with an element added at the beginning. typename Sequence, typename T > - typename __result_of_push_front__::type push_front( + typename __result_of_push_front__::type push_front( Sequence const& seq, T const& t); [table Parameters