File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff 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 ) ) {
Original file line number Diff line number Diff 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 ) ) {
You can’t perform that action at this time.
0 commit comments