1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 03:57:44 +00:00

numfmt: remove duplicate default hints from help

This commit is contained in:
Daniel Hofstetter 2022-07-04 10:28:47 +02:00
parent 03b208cb9d
commit bd29a8c472

View file

@ -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")