Slightly tweak comments after #403

This commit is contained in:
Eli Bendersky 2021-12-02 07:09:23 -08:00
parent dadb6bdeae
commit 99902be3b2
2 changed files with 6 additions and 6 deletions

View File

@ -17,9 +17,9 @@ $ go test -v
PASS PASS
ok examples/testing 0.023s ok examples/testing 0.023s
# Run all benchmarks in the current project in verbose # Run all benchmarks in the current project. All tests
# mode. All tests are run prior to benchmarks. The `bench` # are run prior to benchmarks. The `bench` flag filters
# flag receives a regex for benchmark function names. # benchmark function names with a regexp.
$ go test -bench=. $ go test -bench=.
goos: darwin goos: darwin
goarch: arm64 goarch: arm64

6
public/testing generated
View File

@ -249,9 +249,9 @@ benchmarking in a loop <code>b.N</code> times.</p>
<tr> <tr>
<td class="docs"> <td class="docs">
<p>Run all benchmarks in the current project in verbose <p>Run all benchmarks in the current project. All tests
mode. All tests are run prior to benchmarks. The <code>bench</code> are run prior to benchmarks. The <code>bench</code> flag filters
flag receives a regex for benchmark function names.</p> benchmark function names with a regexp.</p>
</td> </td>
<td class="code"> <td class="code">