File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ func (p *Process) StdinPipe() (io.WriteCloser, error) {
88
88
// output when the command starts.
89
89
//
90
90
// Wait will close the pipe after seeing the command exit, so most callers
91
- // need not close the pipe themselves. It is thus incorrect to call Wait
91
+ // don't need to close the pipe themselves. It is thus incorrect to call Wait
92
92
// before all reads from the pipe have completed.
93
93
// For the same reason, it is incorrect to call Run when using StdoutPipe.
94
94
func (p * Process ) StdoutPipe () (io.ReadCloser , error ) {
@@ -99,7 +99,7 @@ func (p *Process) StdoutPipe() (io.ReadCloser, error) {
99
99
// error when the command starts.
100
100
//
101
101
// Wait will close the pipe after seeing the command exit, so most callers
102
- // need not close the pipe themselves. It is thus incorrect to call Wait
102
+ // don't need to close the pipe themselves. It is thus incorrect to call Wait
103
103
// before all reads from the pipe have completed.
104
104
// For the same reason, it is incorrect to use Run when using StderrPipe.
105
105
func (p * Process ) StderrPipe () (io.ReadCloser , error ) {
You can’t perform that action at this time.
0 commit comments