From: cch123 Date: Mon, 2 Jul 2018 04:32:48 +0000 (+0000) Subject: runtime: fix typo in mapextra comment X-Git-Tag: go1.11beta2~237 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=5110d19fc2986b702ba0cfcbeacfe692154c77b1;p=gostls13.git runtime: fix typo in mapextra comment Change-Id: Idbd8a1b5bfeb1c23c86cef0697cf0380900e95f3 GitHub-Last-Rev: a8c2b27046582c4eef932a8502826a3b23b8dab3 GitHub-Pull-Request: golang/go#26175 Reviewed-on: https://go-review.googlesource.com/121821 Reviewed-by: Keith Randall --- diff --git a/src/runtime/map.go b/src/runtime/map.go index 0e00f12974..208c92cb0d 100644 --- a/src/runtime/map.go +++ b/src/runtime/map.go @@ -126,7 +126,7 @@ type mapextra struct { // If both key and value do not contain pointers and are inline, then we mark bucket // type as containing no pointers. This avoids scanning such maps. // However, bmap.overflow is a pointer. In order to keep overflow buckets - // alive, we store pointers to all overflow buckets in hmap.overflow and h.map.oldoverflow. + // alive, we store pointers to all overflow buckets in hmap.extra.overflow and hmap.extra.oldoverflow. // overflow and oldoverflow are only used if key and value do not contain pointers. // overflow contains overflow buckets for hmap.buckets. // oldoverflow contains overflow buckets for hmap.oldbuckets.