summaryrefslogtreecommitdiffstats
path: root/src/common.rs
diff options
context:
space:
mode:
authorSebastian Thiel <sthiel@thoughtworks.com>2019-06-04 21:29:17 +0530
committerSebastian Thiel <sthiel@thoughtworks.com>2019-06-04 21:29:17 +0530
commit097bce870f4294e83f2062c4f80304004e8556a0 (patch)
treed0628ca3ed438aae69b561fa63800fbc108cb299 /src/common.rs
parenta1ecbf0a1a68ca7bb9f4e372e89b66ac3a945264 (diff)
Support for changing the percentage display
Diffstat (limited to 'src/common.rs')
-rw-r--r--src/common.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.rs b/src/common.rs
index 2bb428f..2e8a736 100644
--- a/src/common.rs
+++ b/src/common.rs
@@ -76,7 +76,7 @@ impl ByteFormat {
match self {
Metric | Binary => 10,
Bytes => 12,
- MiB|MB => 12,
+ MiB | MB => 12,
_ => 10,
}
}