]> Cypherpunks repositories - gostls13.git/commitdiff
csv: fix spelling errors in comments
authorRobert Griesemer <gri@golang.org>
Wed, 13 Jul 2011 00:45:29 +0000 (17:45 -0700)
committerRobert Griesemer <gri@golang.org>
Wed, 13 Jul 2011 00:45:29 +0000 (17:45 -0700)
Fixes #2066.

R=golang-dev, dsymonds
CC=golang-dev
https://golang.org/cl/4699045

src/pkg/csv/reader.go
src/pkg/csv/writer.go

index 1f4b61cf9c47f56dc8ec7a1407c6802bbef04d2d..c59312ad6d04585b2254eca525351672988d4b58 100644 (file)
@@ -87,7 +87,7 @@ var (
 // Comma is the field delimiter.  It defaults to ','.
 //
 // Comment, if not 0, is the comment character. Lines beginning with the
-// Comment character is ignored.
+// Comment character are ignored.
 //
 // If FieldsPerRecord is positive, Read requires each record to
 // have the given number of fields.  If FieldsPerRecord is 0, Read sets it to
@@ -97,7 +97,7 @@ var (
 // If LazyQuotes is true, a quote may appear in an unquoted field and a
 // non-doubled quote may appear in a quoted field.
 //
-// If TrailingComma is true, the last field may be a unquoted empty field.
+// If TrailingComma is true, the last field may be an unquoted empty field.
 //
 // If TrimLeadingSpace is true, leading white space in a field is ignored.
 type Reader struct {
@@ -171,7 +171,7 @@ func (r *Reader) ReadAll() (records [][]string, err os.Error) {
 }
 
 // readRune reads one rune from r, folding \r\n to \n and keeping track
-// of our far into the line we have read.  r.column will point to the start
+// of how far into the line we have read.  r.column will point to the start
 // of this rune, not the end of this rune.
 func (r *Reader) readRune() (int, os.Error) {
        rune, _, err := r.r.ReadRune()
@@ -222,7 +222,7 @@ func (r *Reader) parseRecord() (fields []string, err os.Error) {
 
        // Peek at the first rune.  If it is an error we are done.
        // If we are support comments and it is the comment character
-       // the skip to the end of line.
+       // then skip to the end of line.
 
        rune, _, err := r.r.ReadRune()
        if err != nil {
@@ -281,7 +281,7 @@ func (r *Reader) parseField() (haveField bool, delim int, err os.Error) {
                // will check below
 
        case '\n':
-               // We are a trailing empty field or a blank linke
+               // We are a trailing empty field or a blank line
                if r.column == 0 {
                        return false, rune, nil
                }
@@ -352,7 +352,7 @@ func (r *Reader) parseField() (haveField bool, delim int, err os.Error) {
        if !r.TrailingComma {
                // We don't allow trailing commas.  See if we
                // are at the end of the line (being mindful
-               // of triming spaces
+               // of trimming spaces).
                c := r.column
                rune, err = r.readRune()
                if r.TrimLeadingSpace {
index 01386da197308af546e289d8b4479e5318d6b032..ccf703f0f8cfae254b275b993c6fc90b993e9d5f 100644 (file)
@@ -22,7 +22,6 @@ import (
 // Comma is the field delimiter.
 //
 // If UseCRLF is true, the Writer ends each record with \r\n instead of \n.
-// just \n is written.
 type Writer struct {
        Comma   int  // Field delimiter (set to to ',' by NewWriter)
        UseCRLF bool // True to use \r\n as the line terminator