|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r62234 - trunk/libs/program_options/doc
From: ghost_at_[hidden]
Date: 2010-05-26 05:47:36
Author: vladimir_prus
Date: 2010-05-26 05:47:35 EDT (Wed, 26 May 2010)
New Revision: 62234
URL: http://svn.boost.org/trac/boost/changeset/62234
Log:
Correct typos. Closes #4138.
Text files modified:
trunk/libs/program_options/doc/howto.xml | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/libs/program_options/doc/howto.xml
==============================================================================
--- trunk/libs/program_options/doc/howto.xml (original)
+++ trunk/libs/program_options/doc/howto.xml 2010-05-26 05:47:35 EDT (Wed, 26 May 2010)
@@ -107,7 +107,7 @@
// Load the file and tokenize it
ifstream ifs(vm["response-file"].as<string>().c_str());
if (!ifs) {
- cout << "Could no open the response file\n";
+ cout << "Could not open the response file\n";
return 1;
}
// Read the whole file into a string
@@ -146,7 +146,7 @@
vector<string> args = split_winmain(lpCmdLine);
store(command_line_parser(args).options(desc).run(), vm);
</programlisting>
- The function is an overload for <code>wchar_t</code> strings, so can
+ The <code>split_winmain</code> function is overloaded for <code>wchar_t</code> strings, so can
also be used in Unicode applications.
</para>
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk