diff --git a/clap_complete/src/lib.rs b/clap_complete/src/lib.rs index 43feab1e..a45b64ae 100644 --- a/clap_complete/src/lib.rs +++ b/clap_complete/src/lib.rs @@ -22,16 +22,13 @@ //! //! fn build_cli() -> Command { //! Command::new("example") -//! .arg(Arg::new("file") -//! .help("some input file") -//! .value_hint(ValueHint::AnyPath), -//! ) -//! .arg( -//! Arg::new("generator") -//! .long("generate") -//! .action(ArgAction::Set) -//! .value_parser(value_parser!(Shell)), -//! ) +//! .arg(Arg::new("file") +//! .help("some input file") +//! .value_hint(ValueHint::AnyPath)) +//! .arg(Arg::new("generator") +//! .long("generate") +//! .action(ArgAction::Set) +//! .value_parser(value_parser!(Shell))) //! } //! //! fn print_completions(gen: G, cmd: &mut Command) {