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:
parent
d5e2050cf4
commit
0f79b3cf2d
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue