Update algorithms.qbk

Fixed the spelling of "old-fashioned".
This commit is contained in:
insideoutclub
2014-09-05 10:34:21 -07:00
parent 470a28ecb6
commit 51b8115fc1

View File

@ -63,7 +63,7 @@ std::vector<int> vec = ...;
boost::erase(vec, boost::unique<boost::return_found_end>(boost::sort(vec)));
``
Notice the use of `boost::return_found_end`. What if we wanted to erase all the duplicates except one of them? In old-fashined STL-programming we might write
Notice the use of `boost::return_found_end`. What if we wanted to erase all the duplicates except one of them? In old-fashioned STL-programming we might write
``
// assume 'vec' is already sorted