From b840e47a699371f587b5e6f982b447ce4ff92ebe Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Sun, 22 Oct 2023 07:55:30 -0400 Subject: [PATCH] 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! --- book/chapters/flags.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/chapters/flags.md b/book/chapters/flags.md index 16134b26..c1318025 100644 --- a/book/chapters/flags.md +++ b/book/chapters/flags.md @@ -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.