Skip to content

Commit

Permalink
Capitalize the help, version and verbose messsages
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenroose committed Mar 13, 2019
1 parent 3b0d5aa commit 426064f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/bin/hal/main.rs
Expand Up @@ -50,11 +50,9 @@ fn init_app<'a, 'b>() -> clap::App<'a, 'b> {
//TODO(stevenroose) re-enable after https://github.com/clap-rs/clap/pull/1412/
//clap::AppSettings::SubcommandRequiredElseHelp,
])
.help_message("print help information")
.version_message("print version information")
.subcommands(cmd::subcommands())
.arg(
cmd::opt("verbose", "print verbose logging output to stderr")
cmd::opt("verbose", "Print verbose logging output to stderr")
.short("v")
.takes_value(false)
.global(true),
Expand Down

0 comments on commit 426064f

Please sign in to comment.