aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFazlul Shahriar <fshahriar@gmail.com>2012-03-12 14:08:00 -0700
committerRobert Griesemer <gri@golang.org>2012-03-12 14:08:00 -0700
commitc7cca2756e7cf04a472c97b81f07ab791b7186ca (patch)
treeab7d7567cb63544e612a1fda0902d37dd49b23e8
parentbf09a8c9708104c2f2b172d3a2e5ef80198d5256 (diff)
downloadgo-c7cca2756e7cf04a472c97b81f07ab791b7186ca.tar.gz
go-c7cca2756e7cf04a472c97b81f07ab791b7186ca.zip
os/exec: fix typo in documentation
R=golang-dev, gri CC=golang-dev https://golang.org/cl/5797073
-rw-r--r--src/pkg/os/exec/exec.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/os/exec/exec.go b/src/pkg/os/exec/exec.go
index ebe92a9fba..bbd04902b7 100644
--- a/src/pkg/os/exec/exec.go
+++ b/src/pkg/os/exec/exec.go
@@ -59,7 +59,7 @@ type Cmd struct {
// If either is nil, Run connects the corresponding file descriptor
// to the null device (os.DevNull).
//
- // If Stdout and Stderr are are the same writer, at most one
+ // If Stdout and Stderr are the same writer, at most one
// goroutine at a time will call Write.
Stdout io.Writer
Stderr io.Writer