]> Cypherpunks repositories - gostls13.git/commitdiff
syscall: fix typo in exec_windows_test.go
authorAntonio Garcia <garcia.olais@gmail.com>
Fri, 19 Mar 2021 15:29:09 +0000 (15:29 +0000)
committerIan Lance Taylor <iant@golang.org>
Fri, 19 Mar 2021 17:31:59 +0000 (17:31 +0000)
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 <tobias.klauser@gmail.com>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
src/syscall/exec_windows_test.go

index fb2c767c3515b64da0fe6e83d966864b8692d133..aeafb564b3e6be15ed3003d5212beddbfb5b4647 100644 (file)
@@ -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)
        }