1
0
mirror of https://github.com/golang/go synced 2024-11-12 07:00:21 -07:00

os/exec: fix typo in documentation

R=golang-dev, gri
CC=golang-dev
https://golang.org/cl/5797073
This commit is contained in:
Fazlul Shahriar 2012-03-12 14:08:00 -07:00 committed by Robert Griesemer
parent bf09a8c970
commit c7cca2756e

View File

@ -59,7 +59,7 @@ type Cmd struct {
// If either is nil, Run connects the corresponding file descriptor // If either is nil, Run connects the corresponding file descriptor
// to the null device (os.DevNull). // 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. // goroutine at a time will call Write.
Stdout io.Writer Stdout io.Writer
Stderr io.Writer Stderr io.Writer