Skip to content

Commit

Permalink
Merge pull request #1 from acomagu/fix-errclosedpipe-package-doc
Browse files Browse the repository at this point in the history
Fix doc: io.ErrClosedPackage -> ErrClosedPackage
  • Loading branch information
acomagu authored Jun 18, 2019
2 parents d58fa7c + 5d42d70 commit 950dbc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bufpipe.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ RETRY:
}

// Close closes the reader; subsequent writes from the write half of the pipe
// will return error io.ErrClosedPipe.
// will return error ErrClosedPipe.
func (r *PipeReader) Close() error {
return r.CloseWithError(nil)
}
Expand All @@ -94,7 +94,7 @@ func (r *PipeReader) CloseWithError(err error) error {

// Write implements the standard Write interface: it writes data to the internal
// buffer. If the read end is closed with an error, that err is returned as err;
// otherwise err is io.ErrClosedPipe.
// otherwise err is ErrClosedPipe.
func (w *PipeWriter) Write(data []byte) (int, error) {
w.cond.L.Lock()
defer w.cond.L.Unlock()
Expand Down

0 comments on commit 950dbc5

Please sign in to comment.