Skip to content

Commit

Permalink
Add newline after help text (#3650)
Browse files Browse the repository at this point in the history
  • Loading branch information
nootanghimire authored and topecongiro committed Jun 25, 2019
1 parent 26d370e commit 5616533
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cargo-fmt/main.rs
Expand Up @@ -96,7 +96,8 @@ fn execute() -> i32 {
fn print_usage_to_stderr(reason: &str) {
eprintln!("{}", reason);
let app = Opts::clap();
app.write_help(&mut io::stderr())
app.after_help("")
.write_help(&mut io::stderr())
.expect("failed to write to stderr");
}

Expand Down

0 comments on commit 5616533

Please sign in to comment.