Skip to content

Commit 5616533

Browse files
nootanghimiretopecongiro
authored andcommitted
Add newline after help text (#3650)
1 parent 26d370e commit 5616533

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/cargo-fmt/main.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ fn execute() -> i32 {
9696
fn print_usage_to_stderr(reason: &str) {
9797
eprintln!("{}", reason);
9898
let app = Opts::clap();
99-
app.write_help(&mut io::stderr())
99+
app.after_help("")
100+
.write_help(&mut io::stderr())
100101
.expect("failed to write to stderr");
101102
}
102103

0 commit comments

Comments
 (0)