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

sum: fix help text for system v argument

This commit is contained in:
Terts Diepraam 2021-06-01 09:54:49 +02:00
parent 6141fdcc73
commit c1f2d41a27

View file

@ -108,13 +108,13 @@ pub fn uumain(args: impl uucore::Args) -> i32 {
.arg( .arg(
Arg::with_name(options::BSD_COMPATIBLE) Arg::with_name(options::BSD_COMPATIBLE)
.short(options::BSD_COMPATIBLE) .short(options::BSD_COMPATIBLE)
.help("use the BSD compatible algorithm (default)"), .help("use the BSD sum algorithm, use 1K blocks (default)"),
) )
.arg( .arg(
Arg::with_name(options::SYSTEM_V_COMPATIBLE) Arg::with_name(options::SYSTEM_V_COMPATIBLE)
.short("s") .short("s")
.long(options::SYSTEM_V_COMPATIBLE) .long(options::SYSTEM_V_COMPATIBLE)
.help("use the BSD compatible algorithm (default)"), .help("use System V sum algorithm, use 512 bytes blocks"),
) )
.get_matches_from(args); .get_matches_from(args);