From 6341cfb1a6896db129a0657f470f1d8ffd3cf744 Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Thu, 16 Aug 2012 05:16:42 +0000 Subject: [PATCH] Merge doc typo corrections to release; fixes #6595; fixes #7182 [SVN r80057] --- string/doc/usage.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/string/doc/usage.xml b/string/doc/usage.xml index 142bb2e..56fd3ac 100644 --- a/string/doc/usage.xml +++ b/string/doc/usage.xml @@ -130,7 +130,7 @@ string str1("command.com"); cout << str1 - << (is_executable("command.com")? "is": "is not") + << (is_executable(str1)? "is": "is not") << "an executable" << endl; // prints "command.com is an executable"