From 6b2aabeecc1db46d030b9c5c5553c4e0fabba0cf Mon Sep 17 00:00:00 2001 From: Josh Bleecher Snyder Date: Thu, 17 Jul 2014 12:50:56 -0700 Subject: [PATCH] sync: fix typo in benchmark name LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/118860043 --- src/pkg/sync/pool_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() { -- 2.48.1