Skip to content

Commit

Permalink
Merge pull request #3696 from cakebaker/numfmt_remove_default_hints_f…
Browse files Browse the repository at this point in the history
…rom_help

numfmt: remove duplicate default hints from help
  • Loading branch information
sylvestre authored Jul 4, 2022
2 parents 4f1d626 + bd29a8c commit 480630b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/uu/numfmt/src/numfmt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ pub fn uu_app<'a>() -> Command<'a> {
.arg(
Arg::new(options::FIELD)
.long(options::FIELD)
.help("replace the numbers in these input fields (default=1) see FIELDS below")
.help("replace the numbers in these input fields; see FIELDS below")
.value_name("FIELDS")
.default_value(options::FIELD_DEFAULT),
)
Expand Down Expand Up @@ -256,7 +256,7 @@ pub fn uu_app<'a>() -> Command<'a> {
.long(options::ROUND)
.help(
"use METHOD for rounding when scaling; METHOD can be: up,\
down, from-zero (default), towards-zero, nearest",
down, from-zero, towards-zero, nearest",
)
.value_name("METHOD")
.default_value("from-zero")
Expand Down

0 comments on commit 480630b

Please sign in to comment.