Skip to content

Commit

Permalink
internal/bisect: fix doc comment api links
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
rsc authored and gopherbot committed Jul 17, 2024
1 parent 25ed04f commit 2cb2f7d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/bisect/bisect.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
//
// Finally, a leading “v” in the pattern indicates that the reports will be shown
// to the user of bisect to describe the changes involved in a failure.
// At the API level, the leading “v” causes [Matcher.Visible] to return true.
// At the API level, the leading “v” causes [Matcher.Verbose] to return true.
// See the next section for details.
//
// # Match Reports
Expand All @@ -136,12 +136,12 @@
// 0x1234 is the change ID in hexadecimal.
// An alternate form is “[bisect-match 010101]”, giving the change ID in binary.
//
// When [Matcher.Visible] returns false, the match reports are only
// When [Matcher.Verbose] returns false, the match reports are only
// being processed by bisect to learn the set of enabled changes,
// not shown to the user, meaning that each report can be a match
// marker on a line by itself, eliding the usual textual description.
// When the textual description is expensive to compute,
// checking [Matcher.Visible] can help the avoid that expense
// checking [Matcher.Verbose] can help the avoid that expense
// in most runs.
package bisect

Expand Down

0 comments on commit 2cb2f7d

Please sign in to comment.