mirror of
https://github.com/uutils/coreutils
synced 2024-12-14 07:12:44 +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 NAME: &str = "unexpand";
|
||||||
static USAGE: &str = "{} [OPTION]... [FILE]...";
|
static USAGE: &str = "{} [OPTION]... [FILE]...";
|
||||||
static ABOUT: &str = r#"Convert blanks in each FILE to tabs, writing to standard output.
|
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."#;
|
With no FILE, or when FILE is -, read standard input.";
|
||||||
|
|
||||||
const DEFAULT_TABSTOP: usize = 8;
|
const DEFAULT_TABSTOP: usize = 8;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue