From 99902be3b2005a6d263ded469dfe89280a143466 Mon Sep 17 00:00:00 2001 From: Eli Bendersky Date: Thu, 2 Dec 2021 07:09:23 -0800 Subject: [PATCH] Slightly tweak comments after #403 --- examples/testing/main_test.sh | 6 +++--- public/testing | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/testing/main_test.sh b/examples/testing/main_test.sh index b04fdb2..1e922b6 100644 --- a/examples/testing/main_test.sh +++ b/examples/testing/main_test.sh @@ -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 diff --git a/public/testing b/public/testing index 530d0b2..4251984 100644 --- a/public/testing +++ b/public/testing @@ -249,9 +249,9 @@ benchmarking in a loop b.N times.

-

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.