aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/string_test.go
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2014-07-01 10:28:10 -0700
committerRobert Griesemer <gri@golang.org>2014-07-01 10:28:10 -0700
commitb39e2a0ca38cab086c0c90a45399ae4b4897b47b (patch)
treeadb0d8f7fb57054acbb2751b53dac43974c4e6e4 /src/pkg/runtime/string_test.go
parent138099ae96332d2a5a63888c96001286d7273907 (diff)
downloadgo-b39e2a0ca38cab086c0c90a45399ae4b4897b47b.tar.xz
src, misc: applied gofmt -w -s
TBR=rsc R=golang-codereviews CC=golang-codereviews https://golang.org/cl/111770043
Diffstat (limited to 'src/pkg/runtime/string_test.go')
-rw-r--r--src/pkg/runtime/string_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/runtime/string_test.go b/src/pkg/runtime/string_test.go
index 9ed579235d..b05e0c7dd0 100644
--- a/src/pkg/runtime/string_test.go
+++ b/src/pkg/runtime/string_test.go
@@ -96,7 +96,7 @@ func BenchmarkRuneIterate2(b *testing.B) {
}
s := string(bytes)
for i := 0; i < b.N; i++ {
- for _, _ = range s {
+ for _ = range s {
}
}
}