Просмотр исходного кода

Merge pull request #14153 from feixueliantian1/typo

Fix Typo in stdcopy.go
unclejack 10 лет назад
Родитель
Сommit
0a9c580fad
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      pkg/stdcopy/stdcopy.go

+ 2 - 2
pkg/stdcopy/stdcopy.go

@@ -31,7 +31,7 @@ type StdWriter struct {
 func (w *StdWriter) Write(buf []byte) (n int, err error) {
 func (w *StdWriter) Write(buf []byte) (n int, err error) {
 	var n1, n2 int
 	var n1, n2 int
 	if w == nil || w.Writer == nil {
 	if w == nil || w.Writer == nil {
-		return 0, errors.New("Writer not instanciated")
+		return 0, errors.New("Writer not instantiated")
 	}
 	}
 	binary.BigEndian.PutUint32(w.prefix[4:], uint32(len(buf)))
 	binary.BigEndian.PutUint32(w.prefix[4:], uint32(len(buf)))
 	n1, err = w.Writer.Write(w.prefix[:])
 	n1, err = w.Writer.Write(w.prefix[:])
@@ -47,7 +47,7 @@ func (w *StdWriter) Write(buf []byte) (n int, err error) {
 	return
 	return
 }
 }
 
 
-// NewStdWriter instanciates a new Writer.
+// NewStdWriter instantiates a new Writer.
 // Everything written to it will be encapsulated using a custom format,
 // Everything written to it will be encapsulated using a custom format,
 // and written to the underlying `w` stream.
 // and written to the underlying `w` stream.
 // This allows multiple write streams (e.g. stdout and stderr) to be muxed into a single connection.
 // This allows multiple write streams (e.g. stdout and stderr) to be muxed into a single connection.