mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
Merge pull request #3622 from cakebaker/remove_unnecessary_spaces
du: remove unnecessary spaces from help
This commit is contained in:
commit
81a9106b76
1 changed files with 6 additions and 6 deletions
|
@ -748,9 +748,9 @@ pub fn uu_app<'a>() -> Command<'a> {
|
||||||
Arg::new(options::APPARENT_SIZE)
|
Arg::new(options::APPARENT_SIZE)
|
||||||
.long(options::APPARENT_SIZE)
|
.long(options::APPARENT_SIZE)
|
||||||
.help(
|
.help(
|
||||||
"print apparent sizes, rather than disk usage \
|
"print apparent sizes, rather than disk usage \
|
||||||
although the apparent size is usually smaller, it may be larger due to holes \
|
although the apparent size is usually smaller, it may be larger due to holes \
|
||||||
in ('sparse') files, internal fragmentation, indirect blocks, and the like"
|
in ('sparse') files, internal fragmentation, indirect blocks, and the like"
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
.arg(
|
.arg(
|
||||||
|
@ -759,8 +759,8 @@ pub fn uu_app<'a>() -> Command<'a> {
|
||||||
.long(options::BLOCK_SIZE)
|
.long(options::BLOCK_SIZE)
|
||||||
.value_name("SIZE")
|
.value_name("SIZE")
|
||||||
.help(
|
.help(
|
||||||
"scale sizes by SIZE before printing them. \
|
"scale sizes by SIZE before printing them. \
|
||||||
E.g., '-BM' prints sizes in units of 1,048,576 bytes. See SIZE format below."
|
E.g., '-BM' prints sizes in units of 1,048,576 bytes. See SIZE format below."
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
.arg(
|
.arg(
|
||||||
|
@ -898,7 +898,7 @@ pub fn uu_app<'a>() -> Command<'a> {
|
||||||
.possible_values(&["atime", "access", "use", "ctime", "status", "birth", "creation"])
|
.possible_values(&["atime", "access", "use", "ctime", "status", "birth", "creation"])
|
||||||
.help(
|
.help(
|
||||||
"show time of the last modification of any file in the \
|
"show time of the last modification of any file in the \
|
||||||
directory, or any of its subdirectories. If WORD is given, show time as WORD instead \
|
directory, or any of its subdirectories. If WORD is given, show time as WORD instead \
|
||||||
of modification time: atime, access, use, ctime, status, birth or creation"
|
of modification time: atime, access, use, ctime, status, birth or creation"
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue