summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorKazuhiro Sera <seratch@gmail.com>2018-08-23 05:06:47 +0000
committerBrad Fitzpatrick <bradfitz@golang.org>2018-08-23 15:54:07 +0000
commitad644d2e86bab85787879d41c2d2aebbd7c57db8 (patch)
tree5b48d42464b7424ee64ae1c1a8807abbe7ba3d16 /misc
parentc5d38b896df504e3354d7a27f7ad86fa9661ce6b (diff)
downloadgo-git-ad644d2e86bab85787879d41c2d2aebbd7c57db8.tar.gz
all: fix typos detected by github.com/client9/misspell
Change-Id: Iadb3c5de8ae9ea45855013997ed70f7929a88661 GitHub-Last-Rev: ae85bcf82be8fee533e2b9901c6133921382c70a GitHub-Pull-Request: golang/go#26920 Reviewed-on: https://go-review.googlesource.com/128955 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'misc')
-rw-r--r--misc/cgo/test/issue9400_linux.go2
-rw-r--r--misc/cgo/testshared/shared_test.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/misc/cgo/test/issue9400_linux.go b/misc/cgo/test/issue9400_linux.go
index 34eb4983a4..7719535d25 100644
--- a/misc/cgo/test/issue9400_linux.go
+++ b/misc/cgo/test/issue9400_linux.go
@@ -41,7 +41,7 @@ func test9400(t *testing.T) {
// Grow the stack and put down a test pattern
const pattern = 0x123456789abcdef
- var big [1024]uint64 // len must match assmebly
+ var big [1024]uint64 // len must match assembly
for i := range big {
big[i] = pattern
}
diff --git a/misc/cgo/testshared/shared_test.go b/misc/cgo/testshared/shared_test.go
index 846a27173e..529a2c692f 100644
--- a/misc/cgo/testshared/shared_test.go
+++ b/misc/cgo/testshared/shared_test.go
@@ -560,7 +560,7 @@ func TestNotes(t *testing.T) {
abiHashNoteFound = true
case 3: // ELF_NOTE_GODEPS_TAG
if depsNoteFound {
- t.Error("multiple depedency list notes")
+ t.Error("multiple dependency list notes")
}
testDepsNote(t, f, note)
depsNoteFound = true