mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 14:52:33 +00:00
Merge pull request #1520 from nootanghimire/style/add-newline-after-printing-help
style(help): add newline after writing help
This commit is contained in:
commit
180b6b82de
1 changed files with 3 additions and 0 deletions
|
@ -92,6 +92,9 @@ impl<'b, 'c, 'd, 'w> Help<'b, 'c, 'd, 'w> {
|
||||||
} else {
|
} else {
|
||||||
self.write_default_help()?;
|
self.write_default_help()?;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
write!(self.writer, "\n")?;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue