diff options
| author | Kir Kolyshkin <kolyshkin@gmail.com> | 2025-01-20 17:38:26 -0800 |
|---|---|---|
| committer | Alan Donovan <adonovan@google.com> | 2025-01-21 04:36:54 -0800 |
| commit | 3aa7c5ef01e147fb482f4b3e79c6f875a4b1b9fb (patch) | |
| tree | 71c4acd626c726c64891bb95d29311c214d7fe29 /src/testing | |
| parent | 3f4164f508b8148eb526fc096884dba2609f5835 (diff) | |
| download | go-3aa7c5ef01e147fb482f4b3e79c6f875a4b1b9fb.tar.xz | |
testing: fix reference to B.N in docstring
Currently, a documentation reference to a struct member (such as [B.N])
does not result in it being rendered as a link, and thus the square
brackets remain in the rendered documentation which is mildly confusing.
The issue can be seen at
https://pkg.go.dev/testing@master#hdr-b_N_style_benchmarks
Remove the square brackets to fix.
Change-Id: Id374fd2085bd511018220c5d663650f89672302e
Reviewed-on: https://go-review.googlesource.com/c/go/+/643496
Reviewed-by: Ian Lance Taylor <iant@google.com>
Auto-Submit: Ian Lance Taylor <iant@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Alan Donovan <adonovan@google.com>
Diffstat (limited to 'src/testing')
| -rw-r--r-- | src/testing/testing.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testing/testing.go b/src/testing/testing.go index be6391b0ab..3833bfc84b 100644 --- a/src/testing/testing.go +++ b/src/testing/testing.go @@ -120,7 +120,7 @@ // # b.N-style benchmarks // // Prior to the introduction of [B.Loop], benchmarks were written in a -// different style using [B.N]. For example: +// different style using B.N. For example: // // func BenchmarkRandInt(b *testing.B) { // for range b.N { |
