mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
Merge pull request #3696 from cakebaker/numfmt_remove_default_hints_from_help
numfmt: remove duplicate default hints from help
This commit is contained in:
commit
480630bfd6
1 changed files with 2 additions and 2 deletions
|
@ -211,7 +211,7 @@ pub fn uu_app<'a>() -> Command<'a> {
|
||||||
.arg(
|
.arg(
|
||||||
Arg::new(options::FIELD)
|
Arg::new(options::FIELD)
|
||||||
.long(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")
|
.value_name("FIELDS")
|
||||||
.default_value(options::FIELD_DEFAULT),
|
.default_value(options::FIELD_DEFAULT),
|
||||||
)
|
)
|
||||||
|
@ -256,7 +256,7 @@ pub fn uu_app<'a>() -> Command<'a> {
|
||||||
.long(options::ROUND)
|
.long(options::ROUND)
|
||||||
.help(
|
.help(
|
||||||
"use METHOD for rounding when scaling; METHOD can be: up,\
|
"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")
|
.value_name("METHOD")
|
||||||
.default_value("from-zero")
|
.default_value("from-zero")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue