From 0106f697168797f841d576cc2af52a22e0e56f5a Mon Sep 17 00:00:00 2001 From: sslivkoff Date: Wed, 18 Oct 2023 11:29:17 -0700 Subject: [PATCH] revise help output --- crates/cli/src/args.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/cli/src/args.rs b/crates/cli/src/args.rs index 55357def..c9d23479 100644 --- a/crates/cli/src/args.rs +++ b/crates/cli/src/args.rs @@ -45,11 +45,11 @@ pub struct Args { #[arg(short, long, value_name="COLS", num_args(0..), verbatim_doc_comment, help_heading="Content Options")] pub include_columns: Option>, - /// Columns to exclude from the default output + /// Columns to exclude from the defaults #[arg(short, long, value_name="COLS", num_args(0..), help_heading="Content Options")] pub exclude_columns: Option>, - /// Columns to use instead of the default columns, + /// Columns to use instead of the defaults, /// use `all` to use all available columns #[arg(long, value_name="COLS", num_args(0..), verbatim_doc_comment, help_heading="Content Options")] pub columns: Option>, @@ -83,7 +83,7 @@ pub struct Args { #[arg(long, default_value_t = 5, value_name = "R", help_heading = "Acquisition Options")] pub max_retries: u32, - /// Initial backoff for retries (ms) + /// Initial retry backoff time (ms) #[arg(long, default_value_t = 500, value_name = "B", help_heading = "Acquisition Options")] pub initial_backoff: u64,