aboutsummaryrefslogtreecommitdiff
path: root/src/syscall
diff options
context:
space:
mode:
authorJohn Bampton <jbampton@gmail.com>2021-03-01 09:47:09 +0000
committerIan Lance Taylor <iant@golang.org>2021-03-02 03:07:33 +0000
commit580636a78a8e2462f4c5cbbac04c6403c81401ff (patch)
tree26ce71c3ddef98eebe6e3e941ce12d3b7d0174cc /src/syscall
parenta6eeb4add46eddb19ceba36bdd448738808e5ce2 (diff)
downloadgo-580636a78a8e2462f4c5cbbac04c6403c81401ff.tar.gz
go-580636a78a8e2462f4c5cbbac04c6403c81401ff.zip
all: fix spelling
Change-Id: Iad14571c3e19b01740cd744f0b3025b3e2f1cb72 GitHub-Last-Rev: e8064019299f4e593116060ce2bbd14d62830af7 GitHub-Pull-Request: golang/go#44685 Reviewed-on: https://go-review.googlesource.com/c/go/+/297409 Trust: Alberto Donizetti <alb.donizetti@gmail.com> Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/syscall')
-rw-r--r--src/syscall/exec_windows_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syscall/exec_windows_test.go b/src/syscall/exec_windows_test.go
index 8a1c2ceaae..fb2c767c35 100644
--- a/src/syscall/exec_windows_test.go
+++ b/src/syscall/exec_windows_test.go
@@ -108,7 +108,7 @@ func TestChangingProcessParent(t *testing.T) {
}
childOutput, err = ioutil.ReadFile(childDumpPath)
if err != nil {
- t.Fatalf("reading child ouput failed: %v", err)
+ t.Fatalf("reading child output failed: %v", err)
}
if got, want := string(childOutput), fmt.Sprintf("%d", parent.Process.Pid); got != want {
t.Fatalf("child output: want %q, got %q", want, got)