Skip to content

Commit bb92550

Browse files
author
Fytch
committed
fix small typo
1 parent 6f51cc1 commit bb92550

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ int main( int argc, char** argv ) {
187187
// .type( po::string ) // redundant; default for the unnamed parameter
188188
// .multi() // redundant; default for the unnamed parameter
189189
.callback( [ & ]( std::string const& x ){ std::cout << "processed \'" << x << "\' successfully!\n"; } );
190-
// as .get_type() == po::string, the callback may take a std::string
190+
// as .get_type() == po::string, the callback may take an std::string
191191

192192
// parsing returns false if at least one error has occurred
193193
if( !parser( argc, argv ) ) {

examples/3 files.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ int main( int argc, char** argv ) {
2828
// .type( po::string ) // redundant; default for the unnamed parameter
2929
// .multi() // redundant; default for the unnamed parameter
3030
.callback( [ & ]( std::string const& x ){ std::cout << "processed \'" << x << "\' successfully!\n"; } );
31-
// as .get_type() == po::string, the callback may take a std::string
31+
// as .get_type() == po::string, the callback may take an std::string
3232

3333
// parsing returns false if at least one error has occurred
3434
if( !parser( argc, argv ) ) {

0 commit comments

Comments
 (0)