From: Shenghou Ma Date: Tue, 12 May 2015 23:19:29 +0000 (-0400) Subject: testing: fix typo X-Git-Tag: go1.5beta1~621 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c06b8565558d9060aad39442270e9fd48f2448b6;p=gostls13.git testing: fix typo Fixes #10794. Change-Id: Id91485394ddbadc28c800e1d0c3ec281ba6cd098 Reviewed-on: https://go-review.googlesource.com/9990 Reviewed-by: Brad Fitzpatrick --- diff --git a/src/testing/testing.go b/src/testing/testing.go index 35ab82d421..2a1c45f768 100644 --- a/src/testing/testing.go +++ b/src/testing/testing.go @@ -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.