1
Fork 0
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:
Sylvestre Ledru 2021-07-11 11:23:51 +02:00
parent caf984bd55
commit d4f27f1454

View file

@ -419,8 +419,7 @@ impl Display for DuError {
DuError::SummarizeDepthConflict(s) => {
write!(f, "summarizing conflicts with --max-depth={}", s)
}
DuError::InvalidTimeStyleArg(s) => {
write!(
DuError::InvalidTimeStyleArg(s) => write!(
f,
"invalid argument '{}' for 'time style'
Valid arguments are:
@ -429,16 +428,13 @@ Valid arguments are:
- 'iso'
Try '{} --help' for more information.",
s, NAME
)
}
DuError::InvalidTimeArg(s) => {
write!(
),
DuError::InvalidTimeArg(s) => write!(
f,
"Invalid argument '{}' for --time.
'birth' and 'creation' arguments are not supported on this platform.",
s
)
}
),
}
}
}