]> Cypherpunks repositories - gostls13.git/commitdiff
Fixing comment.
authorRobert Griesemer <gri@golang.org>
Tue, 10 Mar 2009 00:30:38 +0000 (17:30 -0700)
committerRobert Griesemer <gri@golang.org>
Tue, 10 Mar 2009 00:30:38 +0000 (17:30 -0700)
R=r
DELTA=2  (0 added, 0 deleted, 2 changed)
OCL=25956
CL=25960

src/lib/go/scanner.go

index 4e4f03d90d26656ee081e48079614c1e35da1c0b..7e20d194d78f0b3292906da5d00024fb4d7fee2d 100644 (file)
@@ -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:
 //