From fb8dcde2f99f18eed30877e985c6eb111b302a76 Mon Sep 17 00:00:00 2001 From: kyegupov Date: Mon, 31 Dec 2018 07:24:25 +0000 Subject: [PATCH] runtime: update link to original Go hashmap source code --- src/runtime/hashmap.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/hashmap.go b/src/runtime/hashmap.go index 934d2bda2..6afde9d9d 100644 --- a/src/runtime/hashmap.go +++ b/src/runtime/hashmap.go @@ -3,7 +3,7 @@ package runtime // This is a hashmap implementation for the map[T]T type. // It is very rougly based on the implementation of the Go hashmap: // -// https://golang.org/src/runtime/hashmap.go +// https://golang.org/src/runtime/map.go import ( "unsafe"