diff --git a/clap_builder/src/builder/command.rs b/clap_builder/src/builder/command.rs index e139d1bbe88..5094a18d4f6 100644 --- a/clap_builder/src/builder/command.rs +++ b/clap_builder/src/builder/command.rs @@ -2217,7 +2217,7 @@ impl Command { /// For example, imagine a CLI which has three positional arguments `[foo] [bar] [baz]...` where /// `baz` accepts multiple values (similar to man `ARGS...` style training arguments). /// - /// With this setting the following invocations are posisble: + /// With this setting the following invocations are possible: /// /// * `$ prog foo bar baz1 baz2 baz3` /// * `$ prog foo -- baz1 baz2 baz3`