mirror of
https://github.com/KeqingMoe/argparse.git
synced 2025-07-03 14:44:40 +00:00
Correct Parent Parser errors in README.md
* Rename parent_parser -> surface_parser * The second constructor argument is a string.
This commit is contained in:
parent
9893754f67
commit
0c44bc349f
@ -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.
|
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
|
```cpp
|
||||||
argparse::ArgumentParser surface_parser("surface", 1.0, argparse::default_arguments::none);
|
argparse::ArgumentParser surface_parser("surface", "1.0", argparse::default_arguments::none);
|
||||||
parent_parser.add_argument("--area")
|
surface_parser.add_argument("--area")
|
||||||
.default_value(0)
|
.default_value(0)
|
||||||
.scan<'i', int>();
|
.scan<'i', int>();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user