Fix typo in docs; Refs #6595

[SVN r80056]
This commit is contained in:
Marshall Clow
2012-08-16 03:55:00 +00:00
parent 9b412cdf6f
commit 5492b15518

View File

@ -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"