Changed mebibyte constant to correctly represent 1 mib

This commit is contained in:
vysion 2021-09-10 16:40:01 -07:00
parent b6feee67f0
commit 07e7eea2cf
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ import (
)
const (
mebibyte = 2 ^ 20
mebibyte = 1 << 20
minute = 60000
)