mirror of https://github.com/golang/go.git
runtime/maps: fix typo in group.go comment (H1 -> H2)
Fixes a typo to correctly describe the hash bits of the control word.
Change-Id: Id3c2ae0bd529e579a95258845f9d8028e23d10d2
GitHub-Last-Rev: 1baa81be5d
GitHub-Pull-Request: golang/go#71730
Reviewed-on: https://go-review.googlesource.com/c/go/+/649416
Reviewed-by: Keith Randall <khr@golang.org>
Auto-Submit: Keith Randall <khr@golang.org>
Reviewed-by: Keith Randall <khr@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
This commit is contained in:
parent
b38415d7e9
commit
d5b75e4046
|
|
@ -111,7 +111,7 @@ func bitsetShiftOutLowest(b bitset) bitset {
|
|||
//
|
||||
// empty: 1 0 0 0 0 0 0 0
|
||||
// deleted: 1 1 1 1 1 1 1 0
|
||||
// full: 0 h h h h h h h // h represents the H1 hash bits
|
||||
// full: 0 h h h h h h h // h represents the H2 hash bits
|
||||
//
|
||||
// TODO(prattmic): Consider inverting the top bit so that the zero value is empty.
|
||||
type ctrl uint8
|
||||
|
|
|
|||
Loading…
Reference in New Issue