1
0
mirror of https://github.com/golang/go synced 2024-11-21 21:04:41 -07:00

go/scanner: fix documentation

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5528070
This commit is contained in:
Robert Griesemer 2012-01-10 18:31:27 -08:00
parent 090049130e
commit 2b6288113e

View File

@ -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.