aboutsummaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorcuishuang <imcusg@gmail.com>2022-02-28 12:17:25 +0000
committerRobert Griesemer <gri@golang.org>2022-02-28 21:52:59 +0000
commit9fe3676bc7de9f648c2e3ce6d4f1aa395b92cefd (patch)
treeecd0baefb590b9cfa50ebe3a3e76cdfe25a1771e /misc
parentf9285818b6890b896f43a38449e35744d97c817a (diff)
downloadgo-9fe3676bc7de9f648c2e3ce6d4f1aa395b92cefd.tar.xz
all: fix typos
Change-Id: I93ff3d33a5db130dd57a9545456f2961fc3f668b GitHub-Last-Rev: f95fafc04937a99f82cb992aabb7bac602033d8e GitHub-Pull-Request: golang/go#51394 Reviewed-on: https://go-review.googlesource.com/c/go/+/388314 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org> Reviewed-by: Robert Griesemer <gri@golang.org>
Diffstat (limited to 'misc')
-rw-r--r--misc/cgo/testsanitizers/asan_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/cgo/testsanitizers/asan_test.go b/misc/cgo/testsanitizers/asan_test.go
index 1b70bce3d1..22dcf23c3b 100644
--- a/misc/cgo/testsanitizers/asan_test.go
+++ b/misc/cgo/testsanitizers/asan_test.go
@@ -63,7 +63,7 @@ func TestASAN(t *testing.T) {
// sanitizer library needs a
// symbolizer program and can't find it.
const noSymbolizer = "external symbolizer"
- // Check if -asan option can correctly print where the error occured.
+ // Check if -asan option can correctly print where the error occurred.
if tc.errorLocation != "" &&
!strings.Contains(out, tc.errorLocation) &&
!strings.Contains(out, noSymbolizer) &&