From e12d8a90bf877af5984ae74b4eff00006d4d953a Mon Sep 17 00:00:00 2001 From: cuishuang Date: Fri, 31 Oct 2025 17:42:00 +0800 Subject: all: remove extra space in the comments Change-Id: I26302d801732f40b1fe6b30ff69d222047bca490 Reviewed-on: https://go-review.googlesource.com/c/go/+/716740 Reviewed-by: Robert Griesemer LUCI-TryBot-Result: Go LUCI Reviewed-by: Michael Knyszek --- src/strings/strings_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/strings/strings_test.go') diff --git a/src/strings/strings_test.go b/src/strings/strings_test.go index b10b5f05cc..edfeb0e813 100644 --- a/src/strings/strings_test.go +++ b/src/strings/strings_test.go @@ -694,7 +694,7 @@ func rot13(r rune) rune { func TestMap(t *testing.T) { // Run a couple of awful growth/shrinkage tests a := tenRunes('a') - // 1. Grow. This triggers two reallocations in Map. + // 1. Grow. This triggers two reallocations in Map. maxRune := func(rune) rune { return unicode.MaxRune } m := Map(maxRune, a) expect := tenRunes(unicode.MaxRune) -- cgit v1.3-5-g9baa