aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIkko Ashimine <eltociear@gmail.com>2021-02-13 02:45:51 +0000
committerIan Lance Taylor <iant@golang.org>2021-02-13 15:15:13 +0000
commit66c27093d0df8be8a75b1ae35fe4ab2003fe028e (patch)
tree6e7cd3715e356f67440b66be15c5006d9c7c47dd
parentff0e93ea313e53f08018b90bada2edee267a8f55 (diff)
downloadgo-66c27093d0df8be8a75b1ae35fe4ab2003fe028e.tar.gz
go-66c27093d0df8be8a75b1ae35fe4ab2003fe028e.zip
cmd/link: fix typo in link_test.go
specfic -> specific Change-Id: Icad0f70c77c866a1031a2929b90fef61fe92aaee GitHub-Last-Rev: f66b56491c0125f58c47f7f39410e0aeef2539be GitHub-Pull-Request: golang/go#44246 Reviewed-on: https://go-review.googlesource.com/c/go/+/291829 Reviewed-by: Ian Lance Taylor <iant@golang.org> Trust: Matthew Dempsky <mdempsky@google.com>
-rw-r--r--src/cmd/link/link_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/link/link_test.go b/src/cmd/link/link_test.go
index 8153c0b31b5..08ddd00a0c7 100644
--- a/src/cmd/link/link_test.go
+++ b/src/cmd/link/link_test.go
@@ -583,7 +583,7 @@ TEXT ·alignPc(SB),NOSPLIT, $0-0
`
// TestFuncAlign verifies that the address of a function can be aligned
-// with a specfic value on arm64.
+// with a specific value on arm64.
func TestFuncAlign(t *testing.T) {
if runtime.GOARCH != "arm64" || runtime.GOOS != "linux" {
t.Skip("skipping on non-linux/arm64 platform")