1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

Merge pull request #3287 from cakebaker/missing_spaces

sort: add two missing spaces in help texts
This commit is contained in:
Sylvestre Ledru 2022-03-21 13:14:28 +01:00 committed by GitHub
commit ce28aa8b8a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,7 +55,7 @@ use uucore::{format_usage, InvalidEncodingHandling};
use crate::tmp_dir::TmpDirWrapper;
const ABOUT: &str = "\
Display sorted concatenation of all FILE(s).\
Display sorted concatenation of all FILE(s). \
With no FILE, or when FILE is -, read standard input.";
const USAGE: &str = "{} [OPTION]... [FILE]...";
@ -1363,7 +1363,7 @@ pub fn uu_app<'a>() -> Command<'a> {
.long(options::check::CHECK_SILENT)
.conflicts_with(options::OUTPUT)
.help(
"exit successfully if the given file is already sorted,\
"exit successfully if the given file is already sorted, \
and exit with status 1 otherwise.",
),
)