aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/map.go
diff options
context:
space:
mode:
authorJosh Bleecher Snyder <josharian@gmail.com>2019-03-25 22:42:54 -0700
committerJosh Bleecher Snyder <josharian@gmail.com>2019-03-28 02:05:54 +0000
commit94c656ff7a2dcdb615688f015197dc85c90c8070 (patch)
treec2fbcac09edc9c823d1968ffda997ed45820a207 /src/runtime/map.go
parent92e6cf4c0f9bf2e1ecd57f22a430d96020cbdd69 (diff)
downloadgo-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.go2
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 {