From 5d42d70a54cb65ca8c783169d26f36f9e6af2f01 Mon Sep 17 00:00:00 2001 From: Yuki Ito Date: Tue, 18 Jun 2019 17:35:29 +0900 Subject: [PATCH] Fix doc: io.ErrClosedPackage -> ErrClosedPackage --- bufpipe.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bufpipe.go b/bufpipe.go index f2a07d6..1225a9a 100644 --- a/bufpipe.go +++ b/bufpipe.go @@ -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) } @@ -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()