1
0
mirror of https://github.com/CLIUtils/CLI11.git synced 2025-04-30 12:43:52 +00:00

A simple grammar fix: an -> a. (#939)

I was reading through the documentation, saw "an flag", and thought
"hey, I can be helpful!" So here's a PR. Thanks for CLI11!
This commit is contained in:
Ryan Curtin 2023-10-22 07:55:30 -04:00 committed by GitHub
parent 998ef31453
commit b840e47a69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@ passing something like `./my_app -f -f` or `./my_app -ff` will throw a
`ParseError` with a nice help description. A flag name may start with any
character except ('-', ' ', '\n', and '!'). For long flags, after the first
character all characters are allowed except ('=',':','{',' ', '\n'). Names are
given as a comma separated string, with the dash or dashes. An flag can have as
given as a comma separated string, with the dash or dashes. A flag can have as
many names as you want, and afterward, using `count`, you can use any of the
names, with dashes as needed.