diff options
| author | Ian Lance Taylor <iant@golang.org> | 2023-08-18 16:34:29 -0700 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2023-08-19 23:05:33 +0000 |
| commit | e019d01d98cd4f42279b43c77c1a6c2a901a690f (patch) | |
| tree | 6ed8ee87f59e1403aae6e7c0db7df86eac61af81 /src/encoding | |
| parent | ba626ac327f45a6d9d211fddd5b48e321fa0702a (diff) | |
| download | go-e019d01d98cd4f42279b43c77c1a6c2a901a690f.tar.xz | |
encoding/csv: correct Column docs
For #44221
Fixes #62147
Change-Id: Ibcc0d11c8253f51a8f5771791ea4173a38a61950
Reviewed-on: https://go-review.googlesource.com/c/go/+/520917
Run-TryBot: Ian Lance Taylor <iant@google.com>
Auto-Submit: Ian Lance Taylor <iant@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Joseph Tsai <joetsai@digital-static.net>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Diffstat (limited to 'src/encoding')
| -rw-r--r-- | src/encoding/csv/reader.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/encoding/csv/reader.go b/src/encoding/csv/reader.go index c6a8ed02c1..a93de9822d 100644 --- a/src/encoding/csv/reader.go +++ b/src/encoding/csv/reader.go @@ -62,7 +62,7 @@ import ( ) // A ParseError is returned for parsing errors. -// Line numbers are 1-indexed and columns are 0-indexed. +// Line and column numbers are 1-indexed. type ParseError struct { StartLine int // Line where the record starts Line int // Line where the error occurred |
