use static strings for usage

This commit is contained in:
Dustin J. Mitchell
2020-12-24 21:07:27 +00:00
parent 7594144a2d
commit 75aaf8d4ab
7 changed files with 138 additions and 141 deletions

View File

@@ -8,7 +8,7 @@ pub(crate) fn execute<W: WriteColor>(
summary: bool,
) -> Fallible<()> {
let usage = Usage::new();
usage.write_help(w, command_name, summary)?;
usage.write_help(w, command_name.as_ref(), summary)?;
Ok(())
}