Skip to content

Commit

Permalink
Merge pull request #4273 from cakebaker/pr_help_output
Browse files Browse the repository at this point in the history
pr: add missing '\' before line breaks
  • Loading branch information
sylvestre authored Jan 11, 2023
2 parents d5e2050 + 073e6c8 commit 46cac11
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/uu/pr/src/pr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down Expand Up @@ -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),
Expand Down

0 comments on commit 46cac11

Please sign in to comment.