diff options
Diffstat (limited to 'src/cmd')
| -rw-r--r-- | src/cmd/compile/internal/ppc64/ssa.go | 4 | ||||
| -rw-r--r-- | src/cmd/compile/internal/test/reproduciblebuilds_test.go | 2 | ||||
| -rw-r--r-- | src/cmd/go/testdata/script/test_fuzz_seed_corpus.txt | 4 | ||||
| -rw-r--r-- | src/cmd/go/testdata/script/version.txt | 2 | ||||
| -rw-r--r-- | src/cmd/link/internal/ld/outbuf.go | 2 | ||||
| -rw-r--r-- | src/cmd/objdump/objdump_test.go | 2 | ||||
| -rw-r--r-- | src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go | 2 |
7 files changed, 9 insertions, 9 deletions
diff --git a/src/cmd/compile/internal/ppc64/ssa.go b/src/cmd/compile/internal/ppc64/ssa.go index d19201331b..d3a0ba1d80 100644 --- a/src/cmd/compile/internal/ppc64/ssa.go +++ b/src/cmd/compile/internal/ppc64/ssa.go @@ -830,7 +830,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) { case ssa.OpPPC64MOVDload, ssa.OpPPC64MOVWload: // MOVDload and MOVWload are DS form instructions that are restricted to - // offsets that are a multiple of 4. If the offset is not a multple of 4, + // offsets that are a multiple of 4. If the offset is not a multiple of 4, // then the address of the symbol to be loaded is computed (base + offset) // and used as the new base register and the offset field in the instruction // can be set to zero. @@ -933,7 +933,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) { case ssa.OpPPC64MOVDstore, ssa.OpPPC64MOVDstorezero: // MOVDstore and MOVDstorezero become DS form instructions that are restricted - // to offset values that are a multple of 4. If the offset field is not a + // to offset values that are a multiple of 4. If the offset field is not a // multiple of 4, then the full address of the store target is computed (base + // offset) and used as the new base register and the offset in the instruction // is set to 0. diff --git a/src/cmd/compile/internal/test/reproduciblebuilds_test.go b/src/cmd/compile/internal/test/reproduciblebuilds_test.go index 0a1a5e9b99..10913ae32f 100644 --- a/src/cmd/compile/internal/test/reproduciblebuilds_test.go +++ b/src/cmd/compile/internal/test/reproduciblebuilds_test.go @@ -68,7 +68,7 @@ func TestIssue38068(t *testing.T) { // Compile a small package with and without the concurrent // backend, then check to make sure that the resulting archives // are identical. Note: this uses "go tool compile" instead of - // "go build" since the latter will generate differnent build IDs + // "go build" since the latter will generate different build IDs // if it sees different command line flags. scenarios := []struct { tag string diff --git a/src/cmd/go/testdata/script/test_fuzz_seed_corpus.txt b/src/cmd/go/testdata/script/test_fuzz_seed_corpus.txt index 57c8a8ba65..3e3fbade23 100644 --- a/src/cmd/go/testdata/script/test_fuzz_seed_corpus.txt +++ b/src/cmd/go/testdata/script/test_fuzz_seed_corpus.txt @@ -9,7 +9,7 @@ env GOCACHE=$WORK/cache ! stdout 'Failing input written to testdata[/\\]fuzz[/\\]FuzzWithAdd[/\\]' stdout FAIL -# Test that fuzzing a target with a sucess in f.Add and a fuzztime of only +# Test that fuzzing a target with a success in f.Add and a fuzztime of only # 1 does not produce a crash. go test -fuzz=FuzzWithGoodAdd -run=FuzzWithGoodAdd -fuzztime=1x stdout ok @@ -73,7 +73,7 @@ go clean -fuzzcache ! stdout 'Failing input written to testdata[/\\]fuzz[/\\]FuzzWithAdd[/\\]' stdout FAIL -# Test that fuzzing a target (with -run=None set) with a sucess in f.Add and a +# Test that fuzzing a target (with -run=None set) with a success in f.Add and a # fuzztime of only 1 does not produce a crash. go test -fuzz=FuzzWithGoodAdd -run=None -fuzztime=1x stdout ok diff --git a/src/cmd/go/testdata/script/version.txt b/src/cmd/go/testdata/script/version.txt index adca7af7a9..f7ead395c0 100644 --- a/src/cmd/go/testdata/script/version.txt +++ b/src/cmd/go/testdata/script/version.txt @@ -2,7 +2,7 @@ go version stdout '^go version' -# Flags without files, or paths to misisng files, should error. +# Flags without files, or paths to missing files, should error. ! go version missing.exe ! go version -m stderr 'with arguments' diff --git a/src/cmd/link/internal/ld/outbuf.go b/src/cmd/link/internal/ld/outbuf.go index e078ee442f..54fafcaf99 100644 --- a/src/cmd/link/internal/ld/outbuf.go +++ b/src/cmd/link/internal/ld/outbuf.go @@ -21,7 +21,7 @@ const outbufMode = 0775 // OutBuf is a buffered file writer. // -// It is simlar to the Writer in cmd/internal/bio with a few small differences. +// It is similar to the Writer in cmd/internal/bio with a few small differences. // // First, it tracks the output architecture and uses it to provide // endian helpers. diff --git a/src/cmd/objdump/objdump_test.go b/src/cmd/objdump/objdump_test.go index c51a01fa86..e984ef279e 100644 --- a/src/cmd/objdump/objdump_test.go +++ b/src/cmd/objdump/objdump_test.go @@ -356,7 +356,7 @@ func TestGoObjOtherVersion(t *testing.T) { cmd := exec.Command(exe, obj) out, err := cmd.CombinedOutput() if err == nil { - t.Fatalf("objdump go116.o succeeded unexpectly") + t.Fatalf("objdump go116.o succeeded unexpectedly") } if !strings.Contains(string(out), "go object of a different version") { t.Errorf("unexpected error message:\n%s", out) diff --git a/src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go b/src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go index 66ac7dde62..af5134deb9 100644 --- a/src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go +++ b/src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go @@ -1715,7 +1715,7 @@ func (st *state) demangleCastTemplateArgs(tp AST, addSubst bool) AST { return tp } -// mergeQualifiers merges two qualifer lists into one. +// mergeQualifiers merges two qualifier lists into one. func mergeQualifiers(q1AST, q2AST AST) AST { if q1AST == nil { return q2AST |
