From c94a118a56f3d06e7760bfd8d9e00458c1eab47c Mon Sep 17 00:00:00 2001 From: Nitin Kumar <59679977+lazysegtree@users.noreply.github.com> Date: Thu, 5 Feb 2026 09:08:26 +0530 Subject: [PATCH] fix(docs): use correct grammar --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a7dfcf4..a4589b2 100644 --- a/README.md +++ b/README.md @@ -129,7 +129,7 @@ explaining the error. ## Help groups Options can be placed into groups for the purposes of displaying help messages. -To place options in a group, pass the group as a string to `add_options`. Then, when displaying the help, `help` by default print help for all groups. If you want to only print help for a specific group, pass the groups that you would like displayed as a vector to the `help` function. +To place options in a group, pass the group as a string to `add_options`. Then, when displaying the help, `help` by default prints help for all groups. If you want to only prints help for a specific group, pass the groups that you would like displayed as a vector to the `help` function. ## Positional Arguments Positional arguments are those given without a preceding flag and can be used @@ -186,7 +186,7 @@ If an option had both, then not specifying it would give the value `"value"`, writing it on the command line as `--option` would give the value `"implicit"`, and writing `--option=another` would give it the value `"another"`. -Note that if `option` has implicit value, specifying `--option another` will not work. You must use `=` syntax - `--option=another` or `-o=another`(assumming `o` is a short name for the option). This is because no argument is required. Hence, there is no good way to determine if the next string is an argument to your option or a positional argument. +Note that if `option` has an implicit value, specifying `--option another` will not work. You must use `=` syntax - `--option=another` or `-o=another`(assumming `o` is a short name for the option). This is because no argument is required. Hence, there is no good way to determine if the next string is an argument to your option or a positional argument. Note that the default and implicit value is always stored as a string, regardless of the type that you want to store it in. It will be parsed as