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 ) {
187
187
// .type( po::string ) // redundant; default for the unnamed parameter
188
188
// .multi() // redundant; default for the unnamed parameter
189
189
.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
191
191
192
192
// parsing returns false if at least one error has occurred
193
193
if( !parser( argc, argv ) ) {
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ int main( int argc, char** argv ) {
28
28
// .type( po::string ) // redundant; default for the unnamed parameter
29
29
// .multi() // redundant; default for the unnamed parameter
30
30
.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
32
32
33
33
// parsing returns false if at least one error has occurred
34
34
if ( !parser ( argc, argv ) ) {
You can’t perform that action at this time.
0 commit comments