mirror of
https://github.com/LeopoldArkham/humansize
synced 2024-11-12 23:27:07 +00:00
Comply with SI for kilobyte
This commit is contained in:
parent
15c1d57956
commit
14c2859718
1 changed files with 1 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
pub(crate) static SCALE_DECIMAL: [&str; 9] = ["B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"];
|
||||
pub(crate) static SCALE_DECIMAL: [&str; 9] = ["B", "kB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"];
|
||||
|
||||
pub(crate) static SCALE_DECIMAL_LONG: [&str; 9] = [
|
||||
"Bytes",
|
||||
|
|
Loading…
Reference in a new issue