Index: src/pkg/scanner/scanner.go |
=================================================================== |
--- a/src/pkg/scanner/scanner.go |
+++ b/src/pkg/scanner/scanner.go |
@@ -2,10 +2,11 @@ |
// Use of this source code is governed by a BSD-style |
// license that can be found in the LICENSE file. |
-// A scanner and tokenizer for UTF-8-encoded text. Takes an io.Reader |
-// providing the source, which then can be tokenized through repeated calls |
-// to the Scan function. For compatibility with existing tools, the NUL |
-// character is not allowed (implementation restriction). |
+// Package scanner provides a scanner and tokenizer for UTF-8-encoded text. |
+// It takes an io.Reader providing the source, which then can be tokenized |
+// through repeated calls to the Scan function. For compatibility with |
+// existing tools, the NUL character is not allowed (implementation |
+// restriction). |
// |
// By default, a Scanner skips white space and Go comments and recognizes all |
// literals as defined by the Go language specification. It may be |