mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
runtime: fix typo in function comments
The correct word to use here is 'receive' not 'recieve'
Change-Id: Ia33e2a91c1c2da6dbe479a05518dbb9b8733d20d
GitHub-Last-Rev: e3c3e211dd
GitHub-Pull-Request: golang/go#54025
Reviewed-on: https://go-review.googlesource.com/c/go/+/419316
Reviewed-by: Keith Randall <khr@google.com>
Auto-Submit: Keith Randall <khr@golang.org>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Reviewed-by: Keith Randall <khr@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: Keith Randall <khr@golang.org>
This commit is contained in:
parent
2ff563a00e
commit
64f2829c9c
1 changed files with 1 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue