From f1e60579c28de01e372b821f980aa2fa06b8801a Mon Sep 17 00:00:00 2001 From: Pavol Droba Date: Tue, 30 Jan 2007 07:59:28 +0000 Subject: [PATCH] documentation typo fixed [SVN r36843] --- string/doc/usage.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/string/doc/usage.xml b/string/doc/usage.xml index 14ca46c..f6b8f58 100644 --- a/string/doc/usage.xml +++ b/string/doc/usage.xml @@ -291,9 +291,9 @@ // aBC typedef split_iterator<string::iterator> string_split_iterator; - for(string_find_iterator It= + for(string_split_iterator It= make_split_iterator(str1, first_finder("-*-", is_iequal())); - It!=string_find_iterator(); + It!=string_split_iterator(); ++It) { cout << copy_range<std::string>(*It) << endl;