From 073e6c8f62a6922081829bb248e31dff456e8cae Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Tue, 10 Jan 2023 10:55:36 +0100 Subject: [PATCH] pr: add missing '\' before line breaks --- src/uu/pr/src/pr.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/uu/pr/src/pr.rs b/src/uu/pr/src/pr.rs index fac495e70..528cb0813 100644 --- a/src/uu/pr/src/pr.rs +++ b/src/uu/pr/src/pr.rs @@ -305,8 +305,8 @@ pub fn uu_app() -> Command { .short('W') .long(options::PAGE_WIDTH) .help( - "set page width to PAGE_WIDTH (72) characters always, - truncate lines, except -J option is set, no interference + "set page width to PAGE_WIDTH (72) characters always, \ + truncate lines, except -J option is set, no interference \ with -S or -s", ) .value_name("width"), @@ -385,7 +385,7 @@ pub fn uu_app() -> Command { Arg::new(options::JOIN_LINES) .short('J') .help( - "merge full lines, turns off -W line truncation, no column + "merge full lines, turns off -W line truncation, no column \ alignment, --sep-string[=STRING] sets separators", ) .action(ArgAction::SetTrue),