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,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
) ),
}
} }
} }
} }