From: Robert Griesemer Date: Tue, 10 Mar 2009 00:30:38 +0000 (-0700) Subject: Fixing comment. X-Git-Tag: weekly.2009-11-06~2064 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=5bd5242bcced5238b7c13580336565e1ef15e222;p=gostls13.git Fixing comment. R=r DELTA=2 (0 added, 0 deleted, 2 changed) OCL=25956 CL=25960 --- diff --git a/src/lib/go/scanner.go b/src/lib/go/scanner.go index 4e4f03d90d..7e20d194d7 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: //