From 5c9f253695b51b2cf86dafdeb92da438a93ec4ee Mon Sep 17 00:00:00 2001 From: Jack Wills <32690432+mrjackwills@users.noreply.github.com> Date: Fri, 7 Oct 2022 01:44:21 +0000 Subject: [PATCH] docs: --help explanation improved --- src/parse_args/mod.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/parse_args/mod.rs b/src/parse_args/mod.rs index 26b0e20..5c70ce9 100644 --- a/src/parse_args/mod.rs +++ b/src/parse_args/mod.rs @@ -5,7 +5,6 @@ use tracing::error; #[derive(Parser, Debug, Clone, Copy)] #[allow(clippy::struct_excessive_bools)] -// #[command(help_template = FULL_TEMPLATE)] #[command(version, about)] pub struct CliArgs { /// Docker update interval in ms, minimum effectively 1000 @@ -16,11 +15,11 @@ pub struct CliArgs { #[clap(short = 't')] pub timestamp: bool, - /// Attempt to colorize the logs + /// Attempt to colorize the logs, conflicts with "-r" #[clap(short = 'c', conflicts_with = "raw")] pub color: bool, - /// Show raw logs, default is to remove ansi formatting + /// Show raw logs, default is to remove ansi formatting, conflicts with "-c" #[clap(short = 'r', conflicts_with = "color")] pub raw: bool,