From: Robert Griesemer Date: Wed, 11 Jan 2012 02:31:27 +0000 (-0800) Subject: go/scanner: fix documentation X-Git-Tag: weekly.2012-01-15~82 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=2b6288113e0582ac323b1d7b28f4298f93dc7480;p=gostls13.git go/scanner: fix documentation R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5528070 --- diff --git a/src/pkg/go/scanner/scanner.go b/src/pkg/go/scanner/scanner.go index 7fb0104e45..34d0442635 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.