remaining "collection" occurences replaced by "range"

[SVN r28908]
This commit is contained in:
Pavol Droba
2005-05-14 19:11:09 +00:00
parent 77307c2823
commit 0f707ed9c9
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@
</para>
<para>
In the reference and also in the code, requirement on the string type is designated by the name of
template argument. <code>CollectionT</code> means that the basic collection requirements must hold.
template argument. <code>RangeT</code> means that the basic range requirements must hold.
<code>SequenceT</code> designates extended sequence requirements.
</para>
</section>

View File

@ -300,7 +300,7 @@
Note that the find iterators have only one template parameter. It is the base iterator type.
The Finder is specified at runtime. This allows us to typedef a find iterator for
common string types and reuse it. Additionally make_*_iterator functions help
to construct a find iterator for a particular collection.
to construct a find iterator for a particular range.
</para>
<para>
See the reference in <headername>boost/algorithm/string/find_iterator.hpp</headername>.