Skip to content

Commit

Permalink
docs(csv): clarify CsvParseStream description (#5613)
Browse files Browse the repository at this point in the history
  • Loading branch information
kt3k authored Aug 2, 2024
1 parent cd0bc9f commit dd80d82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions csv/parse_stream.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ export type RowType<T> = T extends undefined ? string[]
: ParseResult<CsvParseStreamOptions, T>[number];

/**
* Read data from a CSV-encoded stream or file. Provides an auto/custom mapper
* for columns.
* `CsvParseStream` transforms a stream of CSV-encoded text into a stream of
* parsed objects.
*
* A `CsvParseStream` expects input conforming to
* {@link https://www.rfc-editor.org/rfc/rfc4180.html | RFC 4180}.
Expand Down

0 comments on commit dd80d82

Please sign in to comment.