From 0f707ed9c9111c1ea39ab479181306338aa58c11 Mon Sep 17 00:00:00 2001 From: Pavol Droba Date: Sat, 14 May 2005 19:11:09 +0000 Subject: [PATCH] remaining "collection" occurences replaced by "range" [SVN r28908] --- string/doc/design.xml | 2 +- string/doc/usage.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/string/doc/design.xml b/string/doc/design.xml index db5129c..2affb7a 100644 --- a/string/doc/design.xml +++ b/string/doc/design.xml @@ -40,7 +40,7 @@ In the reference and also in the code, requirement on the string type is designated by the name of - template argument. CollectionT means that the basic collection requirements must hold. + template argument. RangeT means that the basic range requirements must hold. SequenceT designates extended sequence requirements. diff --git a/string/doc/usage.xml b/string/doc/usage.xml index 7c8d6c2..e3b2324 100644 --- a/string/doc/usage.xml +++ b/string/doc/usage.xml @@ -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. See the reference in boost/algorithm/string/find_iterator.hpp.