]> Cypherpunks repositories - gostls13.git/commitdiff
encoding/csv: fix comment in parseRecord
authorAinar Garipov <gugl.zadolbal@gmail.com>
Wed, 10 Jun 2015 13:28:51 +0000 (16:28 +0300)
committerBrad Fitzpatrick <bradfitz@golang.org>
Wed, 10 Jun 2015 14:26:10 +0000 (14:26 +0000)
Change-Id: I82edd9364e1b4634006f5e043202a69f383dcdbe
Reviewed-on: https://go-review.googlesource.com/10826
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/encoding/csv/reader.go

index d0a09044fb487797d31dcadf16bd336f6d6b3670..ca81a4124299e36d4e4a45d3ca355c84da1ded74 100644 (file)
@@ -215,7 +215,7 @@ func (r *Reader) parseRecord() (fields []string, err error) {
        r.column = -1
 
        // Peek at the first rune.  If it is an error we are done.
-       // If we are support comments and it is the comment character
+       // If we support comments and it is the comment character
        // then skip to the end of line.
 
        r1, _, err := r.r.ReadRune()