diff --git a/src/builder/command.rs b/src/builder/command.rs index 4be5b55a392..eace041538c 100644 --- a/src/builder/command.rs +++ b/src/builder/command.rs @@ -1662,7 +1662,7 @@ impl Command { /// correctly by the default help formatter: /// /// - Do not indent the first usage line. - /// - Indent all subsequent usage lines with four spaces. + /// - Indent all subsequent usage lines with seven spaces. /// - The last line must not end with a newline. /// /// # Examples @@ -1680,8 +1680,8 @@ impl Command { /// # use clap::{Command, Arg}; /// Command::new("myprog") /// .override_usage( - /// "myapp -X [-a] [-b] \n \ - /// myapp -Y [-c] \n \ + /// "myapp -X [-a] [-b] \n \ + /// myapp -Y [-c] \n \ /// myapp -Z [-d|-e]" /// ) /// # ;