From: Ainar Garipov Date: Wed, 10 Jun 2015 13:28:51 +0000 (+0300) Subject: encoding/csv: fix comment in parseRecord X-Git-Tag: go1.5beta1~299 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=4da658cf96f97278748dd0bc39cce48a87078eb5;p=gostls13.git encoding/csv: fix comment in parseRecord Change-Id: I82edd9364e1b4634006f5e043202a69f383dcdbe Reviewed-on: https://go-review.googlesource.com/10826 Reviewed-by: Brad Fitzpatrick --- diff --git a/src/encoding/csv/reader.go b/src/encoding/csv/reader.go index d0a09044fb..ca81a41242 100644 --- a/src/encoding/csv/reader.go +++ b/src/encoding/csv/reader.go @@ -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()