diff options
| author | Josh Bleecher Snyder <josharian@gmail.com> | 2014-08-19 08:50:35 -0700 |
|---|---|---|
| committer | Josh Bleecher Snyder <josharian@gmail.com> | 2014-08-19 08:50:35 -0700 |
| commit | 339a24da6611487308b497a2ba7506c5451c637f (patch) | |
| tree | 86a3d5b7196eabeb1e86e7698422b990a33742f4 /src/pkg/runtime | |
| parent | 8c25e08fbdf3511394f5ea5fc69c3ff988a61a5a (diff) | |
| download | go-339a24da6611487308b497a2ba7506c5451c637f.tar.xz | |
runtime: fix typo in comment
LGTM=bradfitz
R=golang-codereviews, bradfitz
CC=golang-codereviews
https://golang.org/cl/125500043
Diffstat (limited to 'src/pkg/runtime')
| -rw-r--r-- | src/pkg/runtime/asm_386.s | 2 | ||||
| -rw-r--r-- | src/pkg/runtime/asm_amd64.s | 2 | ||||
| -rw-r--r-- | src/pkg/runtime/asm_amd64p32.s | 2 | ||||
| -rw-r--r-- | src/pkg/runtime/asm_arm.s | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/pkg/runtime/asm_386.s b/src/pkg/runtime/asm_386.s index 16e3f3136a..638d1c5134 100644 --- a/src/pkg/runtime/asm_386.s +++ b/src/pkg/runtime/asm_386.s @@ -1167,7 +1167,7 @@ TEXT runtime·memeq(SB),NOSPLIT,$0-13 // eqstring tests whether two strings are equal. // See runtime_test.go:eqstring_generic for -// equivlaent Go code. +// equivalent Go code. TEXT runtime·eqstring(SB),NOSPLIT,$0-17 MOVL s1len+4(FP), AX MOVL s2len+12(FP), BX diff --git a/src/pkg/runtime/asm_amd64.s b/src/pkg/runtime/asm_amd64.s index 6446b5d832..87c23168f6 100644 --- a/src/pkg/runtime/asm_amd64.s +++ b/src/pkg/runtime/asm_amd64.s @@ -1140,7 +1140,7 @@ TEXT runtime·memeq(SB),NOSPLIT,$0-25 // eqstring tests whether two strings are equal. // See runtime_test.go:eqstring_generic for -// equivlaent Go code. +// equivalent Go code. TEXT runtime·eqstring(SB),NOSPLIT,$0-33 MOVQ s1len+8(FP), AX MOVQ s2len+24(FP), BX diff --git a/src/pkg/runtime/asm_amd64p32.s b/src/pkg/runtime/asm_amd64p32.s index 69e050f90d..71ea4f385a 100644 --- a/src/pkg/runtime/asm_amd64p32.s +++ b/src/pkg/runtime/asm_amd64p32.s @@ -785,7 +785,7 @@ TEXT runtime·memeq(SB),NOSPLIT,$0-17 // eqstring tests whether two strings are equal. // See runtime_test.go:eqstring_generic for -// equivlaent Go code. +// equivalent Go code. TEXT runtime·eqstring(SB),NOSPLIT,$0-17 MOVL s1len+4(FP), AX MOVL s2len+12(FP), BX diff --git a/src/pkg/runtime/asm_arm.s b/src/pkg/runtime/asm_arm.s index 324b27b18f..3e0b13e699 100644 --- a/src/pkg/runtime/asm_arm.s +++ b/src/pkg/runtime/asm_arm.s @@ -724,7 +724,7 @@ _next2: // eqstring tests whether two strings are equal. // See runtime_test.go:eqstring_generic for -// equivlaent Go code. +// equivalent Go code. TEXT runtime·eqstring(SB),NOSPLIT,$-4-17 MOVW s1len+4(FP), R0 MOVW s2len+12(FP), R1 |
