1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37: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::with_name(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::with_name(options::SYSTEM_V_COMPATIBLE)
.short("s")
.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);