move help text

This commit is contained in:
Carson McManus 2022-06-19 11:32:04 -04:00
parent 9f7c8fef68
commit 138f36f562
2 changed files with 1 additions and 2 deletions

View file

@ -74,7 +74,7 @@ impl FromStr for Verbosity {
#[derive(Debug, Clone, Parser)] #[derive(Debug, Clone, Parser)]
#[clap(about="Debug stuff, not useful for most users.")] #[clap(about="Debug stuff, not useful for most users.")]
pub(crate) struct ArgsDebug { pub(crate) struct ArgsDebug {
#[clap(long)] #[clap(long, help = "Show an example confirmation menu using dummy data.")]
pub demo_conf_menu: bool pub demo_conf_menu: bool
} }

View file

@ -120,7 +120,6 @@ fn cli() -> App<'static> {
App::new("debug") App::new("debug")
.arg( .arg(
Arg::with_name("demo-conf-menu") Arg::with_name("demo-conf-menu")
.help("Show an example confirmation menu using dummy data.")
.takes_value(false) .takes_value(false)
) )
) )