From 4e55a78e2d726d6fd127cc084fe0c8154823d89b Mon Sep 17 00:00:00 2001 From: Pavol Droba Date: Thu, 15 Jul 2004 22:24:39 +0000 Subject: [PATCH] Small comment typo removed [SVN r23609] --- string/example/predicate_example.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/string/example/predicate_example.cpp b/string/example/predicate_example.cpp index 037ef47..c89c653 100644 --- a/string/example/predicate_example.cpp +++ b/string/example/predicate_example.cpp @@ -49,7 +49,7 @@ int main() cout << "\";.,\" are all punctuation characters" << endl; } - // Classification predicated can be combined + // Classification predicates can be combined if ( all("abcxxx", is_any_of("xabc") && !is_space() ) ) { cout << "true" << endl;