1
0
mirror of https://github.com/CLIUtils/CLI11.git synced 2025-05-01 13:13:53 +00:00

Merge pull request #71 from msoeken/patch-1

Wrong function name.
This commit is contained in:
Henry Schreiner 2018-01-22 12:13:32 +01:00 committed by GitHub
commit dff9da4c58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -130,7 +130,7 @@ The initialization is just one line, adding options is just two each. The parse
The supported values are:
```cpp
app.add_options(option_name,
app.add_option(option_name,
variable_to_bind_to, // int, float, vector, or string-like
help_string="",
default=false)