mirror of
https://github.com/boostorg/algorithm.git
synced 2025-07-29 12:07:18 +02:00
documentation typo fixed
[SVN r36843]
This commit is contained in:
@ -291,9 +291,9 @@
|
|||||||
// aBC
|
// aBC
|
||||||
|
|
||||||
typedef split_iterator<string::iterator> string_split_iterator;
|
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()));
|
make_split_iterator(str1, first_finder("-*-", is_iequal()));
|
||||||
It!=string_find_iterator();
|
It!=string_split_iterator();
|
||||||
++It)
|
++It)
|
||||||
{
|
{
|
||||||
cout << copy_range<std::string>(*It) << endl;
|
cout << copy_range<std::string>(*It) << endl;
|
||||||
|
Reference in New Issue
Block a user