unexpand: fix output of about string

This commit is contained in:
Daniel Hofstetter 2023-01-11 15:55:37 +01:00
parent 0f79b3cf2d
commit 5ad3cbe965

View file

@ -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;