summaryrefslogtreecommitdiff
path: root/src/lib/go
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2009-03-09 17:30:38 -0700
committerRobert Griesemer <gri@golang.org>2009-03-09 17:30:38 -0700
commit93bef1871e1fe972b0547acefbc723f518f8979f (patch)
treea48dc73d859c5df5cb43674878ecd6154ae5616a /src/lib/go
parent933758d1be0606cf8c11240f7b41af7aa5179616 (diff)
downloadgolang-93bef1871e1fe972b0547acefbc723f518f8979f.tar.gz
Fixing comment.
R=r DELTA=2 (0 added, 0 deleted, 2 changed) OCL=25956 CL=25960
Diffstat (limited to 'src/lib/go')
-rw-r--r--src/lib/go/scanner.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/go/scanner.go b/src/lib/go/scanner.go
index 4e4f03d90..7e20d194d 100644
--- a/src/lib/go/scanner.go
+++ b/src/lib/go/scanner.go
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-// A Go scanner. Takes a []byte as source which can then be
-// tokenized through repeated calls to the Scan() function.
+// A scanner for Go source text. Takes a []byte as source which can
+// then be tokenized through repeated calls to the Scan() function.
//
// Sample use:
//