From f411dbfe3886c0be22afec5e36f8d305900b1ee2 Mon Sep 17 00:00:00 2001 From: Amos Wenger Date: Tue, 22 May 2018 16:55:20 +0200 Subject: [PATCH] fix comments --- progress/format.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/progress/format.go b/progress/format.go index 480343b..4472079 100644 --- a/progress/format.go +++ b/progress/format.go @@ -26,7 +26,7 @@ func Format(i int64, units Units, width int) string { } } -// Convert bytes to human readable string. Like a 2 MB, 64.2 KB, 52 B +// Convert bytes to human readable string. Like a 2 MiB, 64.2 KiB, 52 B func FormatBytes(i int64) (result string) { switch { case i > (1024 * 1024 * 1024 * 1024):