diff options
| author | Shenghou Ma <minux.ma@gmail.com> | 2012-11-22 02:58:24 +0800 |
|---|---|---|
| committer | Shenghou Ma <minux.ma@gmail.com> | 2012-11-22 02:58:24 +0800 |
| commit | 42c8904fe1e8dcb5c2f951af0f5e8427c7f77540 (patch) | |
| tree | f1159084a895fb1ca86405117c05c4443385732d /src/pkg/encoding/binary | |
| parent | 42cc4ea69bf9947625dca122b7f94955e3ac6ef0 (diff) | |
| download | go-42c8904fe1e8dcb5c2f951af0f5e8427c7f77540.tar.xz | |
all: fix the the typos
Fixes #4420.
R=golang-dev, rsc, remyoudompheng
CC=golang-dev
https://golang.org/cl/6854080
Diffstat (limited to 'src/pkg/encoding/binary')
| -rw-r--r-- | src/pkg/encoding/binary/binary.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/encoding/binary/binary.go b/src/pkg/encoding/binary/binary.go index 06670141e1..04d5723c1e 100644 --- a/src/pkg/encoding/binary/binary.go +++ b/src/pkg/encoding/binary/binary.go @@ -184,7 +184,7 @@ func Read(r io.Reader, order ByteOrder, data interface{}) error { // values, or a pointer to such data. // Bytes written to w are encoded using the specified byte order // and read from successive fields of the data. -// When writing structs, zero values are are written for fields +// When writing structs, zero values are written for fields // with blank (_) field names. func Write(w io.Writer, order ByteOrder, data interface{}) error { // Fast path for basic types. |
