diff options
Diffstat (limited to 'src/encoding/csv')
| -rw-r--r-- | src/encoding/csv/writer.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/encoding/csv/writer.go b/src/encoding/csv/writer.go index db2dc79a9e..353d91f238 100644 --- a/src/encoding/csv/writer.go +++ b/src/encoding/csv/writer.go @@ -125,7 +125,7 @@ func (w *Writer) WriteAll(records [][]string) (err error) { // CSV with quoted empty strings strictly less useful. // Not quoting the empty string also makes this package match the behavior // of Microsoft Excel and Google Drive. -// For Postgres, quote the data termating string `\.`. +// For Postgres, quote the data terminating string `\.`. func (w *Writer) fieldNeedsQuotes(field string) bool { if field == "" { return false |
