encoding/csv: fix comment in parseRecord

Change-Id: I82edd9364e1b4634006f5e043202a69f383dcdbe
Reviewed-on: https://go-review.googlesource.com/10826
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Ainar Garipov 2015-06-10 16:28:51 +03:00 committed by Brad Fitzpatrick
parent ab08f79af3
commit 4da658cf96
1 changed files with 1 additions and 1 deletions

View 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()