mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-27 11:07:44 +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) => {
|
||||
write!(f, "summarizing conflicts with --max-depth={}", s)
|
||||
}
|
||||
DuError::InvalidTimeStyleArg(s) => {
|
||||
write!(
|
||||
f,
|
||||
"invalid argument '{}' for 'time style'
|
||||
DuError::InvalidTimeStyleArg(s) => write!(
|
||||
f,
|
||||
"invalid argument '{}' for 'time style'
|
||||
Valid arguments are:
|
||||
- 'full-iso'
|
||||
- 'long-iso'
|
||||
- 'iso'
|
||||
Try '{} --help' for more information.",
|
||||
s, NAME
|
||||
)
|
||||
}
|
||||
DuError::InvalidTimeArg(s) => {
|
||||
write!(
|
||||
f,
|
||||
"Invalid argument '{}' for --time.
|
||||
s, NAME
|
||||
),
|
||||
DuError::InvalidTimeArg(s) => write!(
|
||||
f,
|
||||
"Invalid argument '{}' for --time.
|
||||
'birth' and 'creation' arguments are not supported on this platform.",
|
||||
s
|
||||
)
|
||||
}
|
||||
s
|
||||
),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue