mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 12:07:46 +00:00
unexpand: fix output of about string
This commit is contained in:
parent
0f79b3cf2d
commit
5ad3cbe965
1 changed files with 2 additions and 2 deletions
|
@ -23,8 +23,8 @@ use uucore::{crash, crash_if_err, format_usage};
|
|||
|
||||
static NAME: &str = "unexpand";
|
||||
static USAGE: &str = "{} [OPTION]... [FILE]...";
|
||||
static ABOUT: &str = r#"Convert blanks in each FILE to tabs, writing to standard output.
|
||||
With no FILE, or when FILE is -, read standard input."#;
|
||||
static ABOUT: &str = "Convert blanks in each FILE to tabs, writing to standard output.\n\n\
|
||||
With no FILE, or when FILE is -, read standard input.";
|
||||
|
||||
const DEFAULT_TABSTOP: usize = 8;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue