From 2b6288113e0582ac323b1d7b28f4298f93dc7480 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Tue, 10 Jan 2012 18:31:27 -0800 Subject: [PATCH] go/scanner: fix documentation R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5528070 --- src/pkg/go/scanner/scanner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/go/scanner/scanner.go b/src/pkg/go/scanner/scanner.go index 7fb0104e450..34d04426354 100644 --- a/src/pkg/go/scanner/scanner.go +++ b/src/pkg/go/scanner/scanner.go @@ -104,7 +104,7 @@ const ( // Calls to Scan will use the error handler err if they encounter a // syntax error and err is not nil. Also, for each error encountered, // the Scanner field ErrorCount is incremented by one. The mode parameter -// determines how comments, illegal characters, and semicolons are handled. +// determines how comments and semicolons are handled. // // Note that Init may call err if there is an error in the first character // of the file.