aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/string_test.go
diff options
context:
space:
mode:
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 {
}
}
}