mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-27 19:17:43 +00:00
rustfmt the recent change
This commit is contained in:
parent
caf984bd55
commit
d4f27f1454
1 changed files with 10 additions and 14 deletions
|
@ -419,26 +419,22 @@ impl Display for DuError {
|
||||||
DuError::SummarizeDepthConflict(s) => {
|
DuError::SummarizeDepthConflict(s) => {
|
||||||
write!(f, "summarizing conflicts with --max-depth={}", s)
|
write!(f, "summarizing conflicts with --max-depth={}", s)
|
||||||
}
|
}
|
||||||
DuError::InvalidTimeStyleArg(s) => {
|
DuError::InvalidTimeStyleArg(s) => write!(
|
||||||
write!(
|
f,
|
||||||
f,
|
"invalid argument '{}' for 'time style'
|
||||||
"invalid argument '{}' for 'time style'
|
|
||||||
Valid arguments are:
|
Valid arguments are:
|
||||||
- 'full-iso'
|
- 'full-iso'
|
||||||
- 'long-iso'
|
- 'long-iso'
|
||||||
- 'iso'
|
- 'iso'
|
||||||
Try '{} --help' for more information.",
|
Try '{} --help' for more information.",
|
||||||
s, NAME
|
s, NAME
|
||||||
)
|
),
|
||||||
}
|
DuError::InvalidTimeArg(s) => write!(
|
||||||
DuError::InvalidTimeArg(s) => {
|
f,
|
||||||
write!(
|
"Invalid argument '{}' for --time.
|
||||||
f,
|
|
||||||
"Invalid argument '{}' for --time.
|
|
||||||
'birth' and 'creation' arguments are not supported on this platform.",
|
'birth' and 'creation' arguments are not supported on this platform.",
|
||||||
s
|
s
|
||||||
)
|
),
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue