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
ok examples/testing 0.023s
# Run all benchmarks in the current project in verbose
# mode. All tests are run prior to benchmarks. The `bench`
# flag receives a regex for benchmark function names.
# Run all benchmarks in the current project. All tests
# are run prior to benchmarks. The `bench` flag filters
# benchmark function names with a regexp.
$ go test -bench=.
goos: darwin
goarch: arm64

6
public/testing generated
View File

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