From a715b0e31beabed9ac5702af2ede619b4232cbdb Mon Sep 17 00:00:00 2001 From: Deshi Xiao Date: Mon, 13 Apr 2015 17:21:27 +0800 Subject: [PATCH] correct pkg/stdcopy NewStdWriter function comments pkg/stdcopy NewStdWriter function has wrong doc comment, utils is not correct, it should be stdcopy Signed-off-by: Deshi Xiao --- pkg/stdcopy/stdcopy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/stdcopy/stdcopy.go b/pkg/stdcopy/stdcopy.go index ccf1d9dbab..4f78f20d1b 100644 --- a/pkg/stdcopy/stdcopy.go +++ b/pkg/stdcopy/stdcopy.go @@ -52,7 +52,7 @@ func (w *StdWriter) Write(buf []byte) (n int, err error) { // and written to the underlying `w` stream. // This allows multiple write streams (e.g. stdout and stderr) to be muxed into a single connection. // `t` indicates the id of the stream to encapsulate. -// It can be utils.Stdin, utils.Stdout, utils.Stderr. +// It can be stdcopy.Stdin, stdcopy.Stdout, stdcopy.Stderr. func NewStdWriter(w io.Writer, t StdType) *StdWriter { if len(t) != StdWriterPrefixLen { return nil