From dd80d8296138e33b999e3ea301c4739cc155ff2b Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Fri, 2 Aug 2024 13:07:15 +0900 Subject: [PATCH] docs(csv): clarify `CsvParseStream` description (#5613) --- csv/parse_stream.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/csv/parse_stream.ts b/csv/parse_stream.ts index 12ad67b7b5ec..2d975705a7ca 100644 --- a/csv/parse_stream.ts +++ b/csv/parse_stream.ts @@ -102,8 +102,8 @@ export type RowType = T extends undefined ? string[] : ParseResult[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}.