mirror of
https://github.com/uutils/coreutils.git
synced 2026-06-10 15:48:22 -07:00
Merge pull request #4273 from cakebaker/pr_help_output
pr: add missing '\' before line breaks
This commit is contained in:
+3
-3
@@ -305,8 +305,8 @@ pub fn uu_app() -> Command {
|
|||||||
.short('W')
|
.short('W')
|
||||||
.long(options::PAGE_WIDTH)
|
.long(options::PAGE_WIDTH)
|
||||||
.help(
|
.help(
|
||||||
"set page width to PAGE_WIDTH (72) characters always,
|
"set page width to PAGE_WIDTH (72) characters always, \
|
||||||
truncate lines, except -J option is set, no interference
|
truncate lines, except -J option is set, no interference \
|
||||||
with -S or -s",
|
with -S or -s",
|
||||||
)
|
)
|
||||||
.value_name("width"),
|
.value_name("width"),
|
||||||
@@ -385,7 +385,7 @@ pub fn uu_app() -> Command {
|
|||||||
Arg::new(options::JOIN_LINES)
|
Arg::new(options::JOIN_LINES)
|
||||||
.short('J')
|
.short('J')
|
||||||
.help(
|
.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",
|
alignment, --sep-string[=STRING] sets separators",
|
||||||
)
|
)
|
||||||
.action(ArgAction::SetTrue),
|
.action(ArgAction::SetTrue),
|
||||||
|
|||||||
Reference in New Issue
Block a user