diff options
author | Robert Griesemer <gri@golang.org> | 2010-03-16 16:45:54 -0700 |
---|---|---|
committer | Robert Griesemer <gri@golang.org> | 2010-03-16 16:45:54 -0700 |
commit | 415f42078b59ba05f26ecd34a94a9dee8d6a604c (patch) | |
tree | 0f252e0f7443fd1cc8d8101f5b780a26b5f756b9 /src/pkg/go/scanner/scanner.go | |
parent | 9460e8b0f8eb51248726193c2807b9229c4f269f (diff) | |
download | golang-415f42078b59ba05f26ecd34a94a9dee8d6a604c.tar.gz |
gofmt: more consistent formatting of const/var decls
- gofmt -w src misc
- only manually modified file: src/pkg/go/printer/nodes.go
R=rsc
CC=golang-dev, r
http://codereview.appspot.com/606041
Diffstat (limited to 'src/pkg/go/scanner/scanner.go')
-rw-r--r-- | src/pkg/go/scanner/scanner.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/go/scanner/scanner.go b/src/pkg/go/scanner/scanner.go index b12f9152a..576b95a28 100644 --- a/src/pkg/go/scanner/scanner.go +++ b/src/pkg/go/scanner/scanner.go @@ -76,8 +76,8 @@ func (S *Scanner) next() { // const ( ScanComments = 1 << iota // return comments as COMMENT tokens - AllowIllegalChars // do not report an error for illegal chars - InsertSemis // automatically insert semicolons + AllowIllegalChars // do not report an error for illegal chars + InsertSemis // automatically insert semicolons ) |