]> Cypherpunks repositories - gostls13.git/commitdiff
testing: fix typo
authorShenghou Ma <minux@golang.org>
Tue, 12 May 2015 23:19:29 +0000 (19:19 -0400)
committerMinux Ma <minux@golang.org>
Tue, 12 May 2015 23:39:00 +0000 (23:39 +0000)
Fixes #10794.

Change-Id: Id91485394ddbadc28c800e1d0c3ec281ba6cd098
Reviewed-on: https://go-review.googlesource.com/9990
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/testing/testing.go

index 35ab82d4218d33f9b3e54b7f60c9ebd829163203..2a1c45f7683c2fec5a253990a21dc31faae32bf0 100644 (file)
@@ -44,7 +44,7 @@
 //     }
 //
 // The benchmark function must run the target code b.N times.
-// During benchark execution, b.N is adjusted until the benchmark function lasts
+// During benchmark execution, b.N is adjusted until the benchmark function lasts
 // long enough to be timed reliably.  The output
 //     BenchmarkHello    10000000    282 ns/op
 // means that the loop ran 10000000 times at a speed of 282 ns per loop.