Commit ecd630de authored by Aaron Jacobs's avatar Aaron Jacobs Committed by Ian Lance Taylor

bufio: fix incorrect comment on Scanner.Scan

Change-Id: I216511a4bce431de0a468f618a7a7c4da79e2979
Reviewed-on: https://go-review.googlesource.com/7710Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
parent d26fdf29
...@@ -109,7 +109,7 @@ func (s *Scanner) Text() string { ...@@ -109,7 +109,7 @@ func (s *Scanner) Text() string {
// After Scan returns false, the Err method will return any error that // After Scan returns false, the Err method will return any error that
// occurred during scanning, except that if it was io.EOF, Err // occurred during scanning, except that if it was io.EOF, Err
// will return nil. // will return nil.
// Split panics if the split function returns 100 empty tokens without // Scan panics if the split function returns 100 empty tokens without
// advancing the input. This is a common error mode for scanners. // advancing the input. This is a common error mode for scanners.
func (s *Scanner) Scan() bool { func (s *Scanner) Scan() bool {
// Loop until we have a token. // Loop until we have a token.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment