Skip to content

Commit

Permalink
Correct allowed count in help for --verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
wetheredge committed Mar 6, 2023
1 parent 45ffe8a commit 2b28331
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,13 @@ OPTIONS:
-f, --filter <fields> Select fields to output by name, excluding any suffixed index
(comma separated)
-F, --gps-filter <fields> Select gps fields to output by name, like --filter. Implies --gps
-v, --verbose Increase debug output up to {max_verbose} times
-q, --quiet Reduce debug output up to {max_quiet} times
-v, --verbose Increase debug output
-q, --quiet Reduce output up to {max_quiet} times
--color <when> Set when to enable color [auto, always, never]
-h, --help Print this help
-V, --version Print version information"
),
bin = bin,
max_verbose = MAX_VERBOSITY - DEFAULT_VERBOSITY,
max_quiet = DEFAULT_VERBOSITY,
);
}
Expand Down

0 comments on commit 2b28331

Please sign in to comment.