()
| 42 | var _ error = partialLineError{} |
| 43 | |
| 44 | func (ple partialLineError) Error() string { |
| 45 | return "incomplete record found at end of CSV data: " + ple.partialLine |
| 46 | } |
| 47 | |
| 48 | // csvReader implements TableReader. It reads csv files and returns rows. |
| 49 | // |
no outgoing calls