]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: fix minor doc typo
authorJosh Bleecher Snyder <josharian@gmail.com>
Tue, 26 Mar 2019 05:42:54 +0000 (22:42 -0700)
committerJosh Bleecher Snyder <josharian@gmail.com>
Thu, 28 Mar 2019 02:05:54 +0000 (02:05 +0000)
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>
src/runtime/map.go

index bb32526846c36cee74bb211b611b2dd3c110c48b..1282a1219348e13ffcbe710c0e130d66f849c59e 100644 (file)
@@ -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 {