From 7b758c0ffbc8de6f8d5b87d2151398c9db2795f8 Mon Sep 17 00:00:00 2001 From: Spyros Roum Date: Tue, 19 Oct 2021 19:56:52 +0300 Subject: [PATCH] Remove author's names from help message --- src/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.rs b/src/cli.rs index 7780b33..7a13aab 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -10,7 +10,7 @@ use clap::{Parser, ValueHint}; use crate::Error; #[derive(Parser, Debug)] -#[clap(version, author, about)] +#[clap(version, about)] pub struct Opts { /// Skip overwrite questions positively. #[clap(short, long, conflicts_with = "no")]