1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-31 04:57:45 +00:00

sum: fix output of about string

This commit is contained in:
Daniel Hofstetter 2023-01-11 14:44:59 +01:00
parent d5e2050cf4
commit 0f79b3cf2d

View file

@ -17,8 +17,8 @@ use uucore::{format_usage, show};
static NAME: &str = "sum"; static NAME: &str = "sum";
static USAGE: &str = "{} [OPTION]... [FILE]..."; static USAGE: &str = "{} [OPTION]... [FILE]...";
static ABOUT: &str = r#"Checksum and count the blocks in a file. static ABOUT: &str = "Checksum and count the blocks in a file.\n\n\
With no FILE, or when FILE is -, read standard input."#; With no FILE, or when FILE is -, read standard input.";
// This can be replaced with usize::div_ceil once it is stabilized. // This can be replaced with usize::div_ceil once it is stabilized.
// This implementation approach is optimized for when `b` is a constant, // This implementation approach is optimized for when `b` is a constant,