Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 5616533

Browse files
nootanghimiretopecongiro
authored andcommitted
Add newline after help text (rust-lang#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

Lines changed: 2 additions & 1 deletion
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)