style(help): add newline after writing help

This commit is contained in:
Nootan Ghimire 2019-07-17 10:44:14 +10:00
parent 699ad67567
commit a87284020f
No known key found for this signature in database
GPG key ID: 63188352F7EC57D0

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(())
}
}