Update README.md

This commit is contained in:
Pranav Srinivas Kumar 2019-03-31 17:55:33 -04:00 committed by GitHub
parent e7b32d5a34
commit c9d0c0098e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -128,7 +128,6 @@ Here's what's happening:
- ```-a``` and ```-b``` become true. - ```-a``` and ```-b``` become true.
- argv is further parsed to identify the inputs mapped to ```-c```. - argv is further parsed to identify the inputs mapped to ```-c```.
* Using ```-cab``` will throw an error since argparse expects two inputs for the argument ```-c```. * Using ```-cab``` will throw an error since argparse expects two inputs for the argument ```-c```.
* Notice how argparse is able to quietly and peacefully return an std::vector<float> when asked for it.
## Further Examples ## Further Examples