From 7f9f70e5b65d116539b5c6ee586ea12988682a4f Mon Sep 17 00:00:00 2001 From: Ainar Garipov Date: Thu, 11 Jun 2015 16:49:38 +0300 Subject: all: fix misprints in comments These were found by grepping the comments from the go code and feeding the output to aspell. Change-Id: Id734d6c8d1938ec3c36bd94a4dbbad577e3ad395 Reviewed-on: https://go-review.googlesource.com/10941 Reviewed-by: Aamir Khan Reviewed-by: Brad Fitzpatrick --- src/encoding/csv/writer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/encoding') 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 -- cgit v1.3-5-g9baa