From: Antonio Garcia Date: Fri, 19 Mar 2021 15:29:09 +0000 (+0000) Subject: syscall: fix typo in exec_windows_test.go X-Git-Tag: go1.17beta1~1041 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=482903150dff1a4e9791330aed24ae607005fc18;p=gostls13.git syscall: fix typo in exec_windows_test.go nothign -> nothing Change-Id: I3f5cf20cc094d280f6cafa179eaefd745874dec1 GitHub-Last-Rev: a4cf42f27574ab8567d0f45bcd4dfbe018587214 GitHub-Pull-Request: golang/go#45118 Reviewed-on: https://go-review.googlesource.com/c/go/+/303269 Reviewed-by: Tobias Klauser Reviewed-by: Ian Lance Taylor --- diff --git a/src/syscall/exec_windows_test.go b/src/syscall/exec_windows_test.go index fb2c767c35..aeafb564b3 100644 --- a/src/syscall/exec_windows_test.go +++ b/src/syscall/exec_windows_test.go @@ -52,7 +52,7 @@ func TestChangingProcessParent(t *testing.T) { if os.Getenv("GO_WANT_HELPER_PROCESS") == "parent" { // in parent process - // Parent does nothign. It is just used as a parent of a child process. + // Parent does nothing. It is just used as a parent of a child process. time.Sleep(time.Minute) os.Exit(0) }