Skip to content

Commit

Permalink
revise help output
Browse files Browse the repository at this point in the history
  • Loading branch information
sslivkoff committed Oct 18, 2023
1 parent 4faa35d commit 0106f69
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/cli/src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Vec<String>>,

/// 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<Vec<String>>,

/// 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<Vec<String>>,
Expand Down Expand Up @@ -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,

Expand Down

0 comments on commit 0106f69

Please sign in to comment.