From: Koichi Shiraishi Date: Sat, 28 Dec 2024 05:05:38 +0000 (+0900) Subject: unique: fix typo X-Git-Tag: go1.24rc2~6^2~45 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a785d11ac47560c12202a79a25ddd6ba610976e9;p=gostls13.git unique: fix typo Change-Id: I9f66e3d7aa7b546ebf34d6aa8c7a6558bf35ca82 Reviewed-on: https://go-review.googlesource.com/c/go/+/639055 LUCI-TryBot-Result: Go LUCI Reviewed-by: Ian Lance Taylor Auto-Submit: Ian Lance Taylor Reviewed-by: Dmitri Shuralyov --- diff --git a/src/unique/handle.go b/src/unique/handle.go index 46f2da3ddc..520ab70f8c 100644 --- a/src/unique/handle.go +++ b/src/unique/handle.go @@ -89,7 +89,7 @@ func Make[T comparable](value T) Handle[T] { } var ( - // uniqueMaps is an index of type-specific sync maps used for unique.Make. + // uniqueMaps is an index of type-specific concurrent maps used for unique.Make. // // The two-level map might seem odd at first since the HashTrieMap could have "any" // as its key type, but the issue is escape analysis. We do not want to force lookups