From: Josh Bleecher Snyder Date: Tue, 26 Mar 2019 05:42:54 +0000 (-0700) Subject: runtime: fix minor doc typo X-Git-Tag: go1.13beta1~874 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=94c656ff7a2dcdb615688f015197dc85c90c8070;p=gostls13.git runtime: fix minor doc typo Change-Id: I0a1ebaf41a1bc95508fd9aa782953ddca5ef49c9 Reviewed-on: https://go-review.googlesource.com/c/go/+/169724 Run-TryBot: Josh Bleecher Snyder TryBot-Result: Gobot Gobot Reviewed-by: Brad Fitzpatrick --- 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 {