1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 20:17:45 +00:00

remove the useless format

This commit is contained in:
Sylvestre Ledru 2020-10-25 12:28:27 +01:00
parent 0d4e36d5cd
commit 7c3dccb981

View file

@ -43,7 +43,7 @@ fn get_usage() -> String {
}
fn get_long_usage() -> String {
format!(
String::from(
"
SIZE is an integer with an optional prefix and optional unit.
The available units (K, M, G, T, P, E, Z, and Y) use the following format:
@ -60,7 +60,7 @@ fn get_long_usage() -> String {
'<' => at most
'>' => at least
'/' => round down to multiple of
'%' => round up to multiple of"
'%' => round up to multiple of",
)
}