Skip to content

Commit

Permalink
runtime/race: fix comment in select_test.TestNoRaceSelect1
Browse files Browse the repository at this point in the history
selectGoImpl was merged into selectGo in https://golang.org/cl/37860.

Change-Id: I39985f37223743f1ea0aba9bee0e2708398a925c
GitHub-Last-Rev: ec97b4b
GitHub-Pull-Request: golang#38716
Reviewed-on: https://go-review.googlesource.com/c/go/+/230340
Reviewed-by: Ian Lance Taylor <[email protected]>
  • Loading branch information
cncal authored and ianlancetaylor committed May 1, 2020
1 parent 07cb63a commit e1d1684
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/race/testdata/select_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func TestNoRaceSelect1(t *testing.T) {
x = 1
// At least two channels are needed because
// otherwise the compiler optimizes select out.
// See comment in runtime/select.go:^func selectgoImpl.
// See comment in runtime/select.go:^func selectgo.
select {
case c <- true:
case c1 <- true:
Expand Down

0 comments on commit e1d1684

Please sign in to comment.