diff options
| author | Josh Bleecher Snyder <josharian@gmail.com> | 2014-07-17 12:50:56 -0700 |
|---|---|---|
| committer | Josh Bleecher Snyder <josharian@gmail.com> | 2014-07-17 12:50:56 -0700 |
| commit | 6b2aabeecc1db46d030b9c5c5553c4e0fabba0cf (patch) | |
| tree | 5b0fb525dab94526bd812ee3b3335d54e855ebd2 /src | |
| parent | 92c1e720401e07a97670c92b0ac208da8cc4988c (diff) | |
| download | go-6b2aabeecc1db46d030b9c5c5553c4e0fabba0cf.tar.xz | |
sync: fix typo in benchmark name
LGTM=bradfitz
R=golang-codereviews, bradfitz
CC=golang-codereviews
https://golang.org/cl/118860043
Diffstat (limited to 'src')
| -rw-r--r-- | src/pkg/sync/pool_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/sync/pool_test.go b/src/pkg/sync/pool_test.go index 509448b620..cf5c8bd903 100644 --- a/src/pkg/sync/pool_test.go +++ b/src/pkg/sync/pool_test.go @@ -136,7 +136,7 @@ func BenchmarkPool(b *testing.B) { }) } -func BenchmarkPoolOverlflow(b *testing.B) { +func BenchmarkPoolOverflow(b *testing.B) { var p Pool b.RunParallel(func(pb *testing.PB) { for pb.Next() { |
