From 339a24da6611487308b497a2ba7506c5451c637f Mon Sep 17 00:00:00 2001 From: Josh Bleecher Snyder Date: Tue, 19 Aug 2014 08:50:35 -0700 Subject: [PATCH] runtime: fix typo in comment LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/125500043 --- src/pkg/runtime/asm_386.s | 2 +- src/pkg/runtime/asm_amd64.s | 2 +- src/pkg/runtime/asm_amd64p32.s | 2 +- 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 -- 2.48.1