aboutsummaryrefslogtreecommitdiff
path: root/src/encoding/gob
diff options
context:
space:
mode:
authorYury Smolsky <yury@smolsky.by>2021-04-17 12:12:28 +0300
committerEmmanuel Odeke <emmanuel@orijtech.com>2021-04-20 00:49:17 +0000
commit4f5aec46039347c7abc02a10103f35f936f39c2b (patch)
tree2fb4f58871238d56be71f77c06619a73ed2f61f2 /src/encoding/gob
parent9f87943424df86e501175e10e5e3b8b00dfd03d7 (diff)
downloadgo-4f5aec46039347c7abc02a10103f35f936f39c2b.tar.gz
go-4f5aec46039347c7abc02a10103f35f936f39c2b.zip
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/gob')
-rw-r--r--src/encoding/gob/decoder.go2
1 files changed, 1 insertions, 1 deletions
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)