]> Cypherpunks repositories - gostls13.git/commitdiff
encoding/csv: clarify that this package supports RFC 4180
authorIan Lance Taylor <iant@golang.org>
Tue, 24 May 2016 18:39:48 +0000 (11:39 -0700)
committerIan Lance Taylor <iant@golang.org>
Wed, 25 May 2016 01:47:53 +0000 (01:47 +0000)
The intent of this comment is to reduce the number of issues opened
against the package to add support for new kinds of CSV formats, such as
issues #3150, #8458, #12372, #12755.

Change-Id: I452c0b748e4ca9ebde3e6cea188bf7774372148e
Reviewed-on: https://go-review.googlesource.com/23401
Reviewed-by: Andrew Gerrand <adg@golang.org>
src/encoding/csv/reader.go

index 5d5e3e5bf7cee1054f2860ed41d143b302c8c8eb..89283bb3031d4a2d9c919522567491e5e1c42578 100644 (file)
@@ -3,6 +3,8 @@
 // license that can be found in the LICENSE file.
 
 // Package csv reads and writes comma-separated values (CSV) files.
+// There are many kinds of CSV files; this package supports the format
+// described in RFC 4180.
 //
 // A csv file contains zero or more records of one or more fields per record.
 // Each record is separated by the newline character. The final record may