mirror of https://github.com/golang/go.git
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:
parent
ab08f79af3
commit
4da658cf96
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in New Issue