Merge pull request #1520 from nootanghimire/style/add-newline-after-printing-help

style(help): add newline after writing help
This commit is contained in:
Dylan DPC 2019-07-23 12:35:19 +02:00 committed by GitHub
commit 180b6b82de
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -92,6 +92,9 @@ impl<'b, 'c, 'd, 'w> Help<'b, 'c, 'd, 'w> {
} else {
self.write_default_help()?;
}
write!(self.writer, "\n")?;
Ok(())
}
}