Skip to content

Commit 2cb2f7d

Browse files
rscgopherbot
authored andcommitted
internal/bisect: fix doc comment api links
Change-Id: I586dfdf79272c488eff2a374f24d3f4392176f91 Reviewed-on: https://go-review.googlesource.com/c/tools/+/599156 Auto-Submit: Russ Cox <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: David Chase <[email protected]>
1 parent 25ed04f commit 2cb2f7d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

internal/bisect/bisect.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
//
120120
// Finally, a leading “v” in the pattern indicates that the reports will be shown
121121
// to the user of bisect to describe the changes involved in a failure.
122-
// At the API level, the leading “v” causes [Matcher.Visible] to return true.
122+
// At the API level, the leading “v” causes [Matcher.Verbose] to return true.
123123
// See the next section for details.
124124
//
125125
// # Match Reports
@@ -136,12 +136,12 @@
136136
// 0x1234 is the change ID in hexadecimal.
137137
// An alternate form is “[bisect-match 010101]”, giving the change ID in binary.
138138
//
139-
// When [Matcher.Visible] returns false, the match reports are only
139+
// When [Matcher.Verbose] returns false, the match reports are only
140140
// being processed by bisect to learn the set of enabled changes,
141141
// not shown to the user, meaning that each report can be a match
142142
// marker on a line by itself, eliding the usual textual description.
143143
// When the textual description is expensive to compute,
144-
// checking [Matcher.Visible] can help the avoid that expense
144+
// checking [Matcher.Verbose] can help the avoid that expense
145145
// in most runs.
146146
package bisect
147147

0 commit comments

Comments
 (0)