aboutsummaryrefslogtreecommitdiff
path: root/src/bytes/bytes_test.go
diff options
context:
space:
mode:
authorcuishuang <imcusg@gmail.com>2025-10-31 17:42:00 +0800
committerRobert Griesemer <gri@google.com>2025-11-03 10:05:39 -0800
commite12d8a90bf877af5984ae74b4eff00006d4d953a (patch)
treefc1688f767f153c697cdaec06b8ace8ddb06e9fa /src/bytes/bytes_test.go
parentc5559344acf76c6ddbbb6f222354a2dd88e0abba (diff)
downloadgo-e12d8a90bf877af5984ae74b4eff00006d4d953a.tar.xz
all: remove extra space in the comments
Change-Id: I26302d801732f40b1fe6b30ff69d222047bca490 Reviewed-on: https://go-review.googlesource.com/c/go/+/716740 Reviewed-by: Robert Griesemer <gri@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Knyszek <mknyszek@google.com>
Diffstat (limited to 'src/bytes/bytes_test.go')
-rw-r--r--src/bytes/bytes_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bytes/bytes_test.go b/src/bytes/bytes_test.go
index f18915c879..9547ede312 100644
--- a/src/bytes/bytes_test.go
+++ b/src/bytes/bytes_test.go
@@ -1224,7 +1224,7 @@ 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(r rune) rune { return unicode.MaxRune }
m := Map(maxRune, []byte(a))
expect := tenRunes(unicode.MaxRune)