aboutsummaryrefslogtreecommitdiff
path: root/src/go/parser/parser.go
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/go/parser/parser.go
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/go/parser/parser.go')
-rw-r--r--src/go/parser/parser.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/go/parser/parser.go b/src/go/parser/parser.go
index cddaef350e..a4db57170b 100644
--- a/src/go/parser/parser.go
+++ b/src/go/parser/parser.go
@@ -115,7 +115,7 @@ func (p *parser) next0() {
// Because of one-token look-ahead, print the previous token
// when tracing as it provides a more readable output. The
// very first token (!p.pos.IsValid()) is not initialized
- // (it is token.ILLEGAL), so don't print it .
+ // (it is token.ILLEGAL), so don't print it.
if p.trace && p.pos.IsValid() {
s := p.tok.String()
switch {