aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMuhammad Falak R Wani <falakreyaz@gmail.com>2019-12-08 22:14:52 +0530
committerBrad Fitzpatrick <bradfitz@golang.org>2019-12-09 15:44:40 +0000
commitd542b13134b842a2b4b6b897fc78a1434f595b5d (patch)
tree4a9a64ab3649966dea290988b41e4bd28cf74d13
parent9d4717d5f1d9b8a16c52c46d2a670c230dc72cbc (diff)
downloadgo-d542b13134b842a2b4b6b897fc78a1434f595b5d.tar.gz
go-d542b13134b842a2b4b6b897fc78a1434f595b5d.zip
runtime/race: correct typo s/is/in
Change-Id: Ic79d97c2aa107c0e5c4a8906ad757b0390228bef Reviewed-on: https://go-review.googlesource.com/c/go/+/210417 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
-rw-r--r--src/runtime/race/race.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/race/race.go b/src/runtime/race/race.go
index d298e805cf..c894de5f72 100644
--- a/src/runtime/race/race.go
+++ b/src/runtime/race/race.go
@@ -7,7 +7,7 @@
package race
// This file merely ensures that we link in runtime/cgo in race build,
-// this is turn ensures that runtime uses pthread_create to create threads.
+// this in turn ensures that runtime uses pthread_create to create threads.
// The prebuilt race runtime lives in race_GOOS_GOARCH.syso.
// Calls to the runtime are done directly from src/runtime/race.go.