From: Robert Griesemer Date: Wed, 1 Oct 2014 20:19:40 +0000 (-0700) Subject: testing: clearer comment X-Git-Tag: go1.4beta1~221 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=5edff3270479962ca67769947eb66adbe75e7fb4;p=gostls13.git testing: clearer comment Fixes #8797. LGTM=r R=r CC=golang-codereviews https://golang.org/cl/146680043 --- diff --git a/src/testing/testing.go b/src/testing/testing.go index 21460b0ed4..f91d860a94 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. -// The benchmark package will vary b.N until the benchmark function lasts +// During benchark 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.