diff options
| author | Josh Bleecher Snyder <josharian@gmail.com> | 2019-03-25 22:42:54 -0700 |
|---|---|---|
| committer | Josh Bleecher Snyder <josharian@gmail.com> | 2019-03-28 02:05:54 +0000 |
| commit | 94c656ff7a2dcdb615688f015197dc85c90c8070 (patch) | |
| tree | c2fbcac09edc9c823d1968ffda997ed45820a207 /src/runtime/map.go | |
| parent | 92e6cf4c0f9bf2e1ecd57f22a430d96020cbdd69 (diff) | |
| download | go-94c656ff7a2dcdb615688f015197dc85c90c8070.tar.xz | |
runtime: fix minor doc typo
Change-Id: I0a1ebaf41a1bc95508fd9aa782953ddca5ef49c9
Reviewed-on: https://go-review.googlesource.com/c/go/+/169724
Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/runtime/map.go')
| -rw-r--r-- | src/runtime/map.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/map.go b/src/runtime/map.go index bb32526846..1282a12193 100644 --- a/src/runtime/map.go +++ b/src/runtime/map.go @@ -288,7 +288,7 @@ func makemap64(t *maptype, hint int64, h *hmap) *hmap { return makemap(t, int(hint), h) } -// makehmap_small implements Go map creation for make(map[k]v) and +// makemap_small implements Go map creation for make(map[k]v) and // make(map[k]v, hint) when hint is known to be at most bucketCnt // at compile time and the map needs to be allocated on the heap. func makemap_small() *hmap { |
