From c1f2d41a273d08ecf36345070d0967f83c262207 Mon Sep 17 00:00:00 2001 From: Terts Diepraam Date: Tue, 1 Jun 2021 09:54:49 +0200 Subject: [PATCH] sum: fix help text for system v argument --- src/uu/sum/src/sum.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/uu/sum/src/sum.rs b/src/uu/sum/src/sum.rs index ea833c0d2..95de707fa 100644 --- a/src/uu/sum/src/sum.rs +++ b/src/uu/sum/src/sum.rs @@ -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);