aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2018-01-09 15:49:40 -0500
committerRuss Cox <rsc@golang.org>2018-01-09 23:59:31 +0000
commitde292613c17c0fd8bf6e5fb9e781866d77dc49b1 (patch)
treeb118bd6237bf4af3bfcb087a9169d988e74e370e
parent8c916a2f6d8b26f878d80108aaab2b22007f46bb (diff)
downloadgo-de292613c17c0fd8bf6e5fb9e781866d77dc49b1.tar.gz
go-de292613c17c0fd8bf6e5fb9e781866d77dc49b1.zip
os: fix grammar nit
There should not be a comma before "and" in the original text, because what follows is not a complete sentence. Rewrite. Change-Id: Ie99f204cc87e911fb46149e2eb65e132fa1eb63a Reviewed-on: https://go-review.googlesource.com/87020 Run-TryBot: Russ Cox <rsc@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
-rw-r--r--src/os/exec.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/exec.go b/src/os/exec.go
index 58fc4dd59a..b3f60b62d0 100644
--- a/src/os/exec.go
+++ b/src/os/exec.go
@@ -86,7 +86,7 @@ func FindProcess(pid int) (*Process, error) {
// StartProcess starts a new process with the program, arguments and attributes
// specified by name, argv and attr. The argv slice will become os.Args in the
-// new process, and normally starts with the program name.
+// new process, so it normally starts with the program name.
//
// StartProcess is a low-level interface. The os/exec package provides
// higher-level interfaces.