runtime: fix typo in function comments

The correct word to use here is 'receive' not 'recieve'
This commit is contained in:
Abirdcfly 2022-07-24 21:34:25 +08:00
parent c5da4fb7ac
commit e3c3e211dd

View file

@ -432,7 +432,7 @@ func atoi32(s string) (int32, bool) {
// - KiB, MiB, GiB, TiB which represent binary IEC/ISO 80000 units, or
// - B, which just represents bytes.
//
// Returns an int64 because that's what its callers want and recieve,
// Returns an int64 because that's what its callers want and receive,
// but the result is always non-negative.
func parseByteCount(s string) (int64, bool) {
// The empty string is not valid.