Merge pull request #514 from kevinlincg/master

fix typo in gpool_bench_test.go
This commit is contained in:
John Guo
2020-02-26 23:38:33 +08:00
committed by GitHub

View File

@ -36,7 +36,7 @@ func BenchmarkSyncPoolPut(b *testing.B) {
}
}
func BenchmarkGpoolGet(b *testing.B) {
func BenchmarkSyncPoolGet(b *testing.B) {
for i := 0; i < b.N; i++ {
syncp.Get()
}