Merge pull request #361 from RichardBrown384/rbrown/correct-readme

Correct Parent Parser errors in README.md
This commit is contained in:
Pranav 2024-05-29 20:32:31 -04:00 committed by GitHub
commit e462ab980c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -799,8 +799,8 @@ A parser may use arguments that could be used by other parsers.
These shared arguments can be added to a parser which is then used as a "parent" for parsers which also need those arguments. One or more parent parsers may be added to a parser with `.add_parents`. The positional and optional arguments in each parent is added to the child parser.
```cpp
argparse::ArgumentParser surface_parser("surface", 1.0, argparse::default_arguments::none);
parent_parser.add_argument("--area")
argparse::ArgumentParser surface_parser("surface", "1.0", argparse::default_arguments::none);
surface_parser.add_argument("--area")
.default_value(0)
.scan<'i', int>();