diff options
| author | Yury Smolsky <yury@smolsky.by> | 2021-04-17 12:12:28 +0300 |
|---|---|---|
| committer | Emmanuel Odeke <emmanuel@orijtech.com> | 2021-04-20 00:49:17 +0000 |
| commit | 4f5aec46039347c7abc02a10103f35f936f39c2b (patch) | |
| tree | 2fb4f58871238d56be71f77c06619a73ed2f61f2 /src/encoding | |
| parent | 9f87943424df86e501175e10e5e3b8b00dfd03d7 (diff) | |
| download | go-4f5aec46039347c7abc02a10103f35f936f39c2b.tar.xz | |
all: remove redundant spaces before . and ,
Change-Id: I6a4bd2544276d0638bddf07ebcf2ee636db30fea
Reviewed-on: https://go-review.googlesource.com/c/go/+/311009
Run-TryBot: Yury Smolsky <yury@smolsky.by>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Trust: Emmanuel Odeke <emmanuel@orijtech.com>
Diffstat (limited to 'src/encoding')
| -rw-r--r-- | src/encoding/asn1/marshal_test.go | 2 | ||||
| -rw-r--r-- | src/encoding/gob/decoder.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/encoding/asn1/marshal_test.go b/src/encoding/asn1/marshal_test.go index e3a7d8ff00..f0217ba8a5 100644 --- a/src/encoding/asn1/marshal_test.go +++ b/src/encoding/asn1/marshal_test.go @@ -306,7 +306,7 @@ func TestIssue11130(t *testing.T) { return } if !reflect.DeepEqual(v, v1) { - t.Errorf("got: %#v data=%q , want : %#v data=%q\n ", v1, data1, v, data) + t.Errorf("got: %#v data=%q, want : %#v data=%q\n ", v1, data1, v, data) } } diff --git a/src/encoding/gob/decoder.go b/src/encoding/gob/decoder.go index 7eb3093391..b476aaac93 100644 --- a/src/encoding/gob/decoder.go +++ b/src/encoding/gob/decoder.go @@ -218,7 +218,7 @@ func (dec *Decoder) DecodeValue(v reflect.Value) error { return dec.err } -// If debug.go is compiled into the program , debugFunc prints a human-readable +// If debug.go is compiled into the program, debugFunc prints a human-readable // representation of the gob data read from r by calling that file's Debug function. // Otherwise it is nil. var debugFunc func(io.Reader) |
