From d4f8fb0cf77188f6bbd2e77ec754a7896d9b4d24 Mon Sep 17 00:00:00 2001 From: Vicente Reyes Date: Fri, 6 Oct 2023 16:40:44 +0200 Subject: [PATCH] Minor fix in doc of option quoteChar --- polars/io.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polars/io.ts b/polars/io.ts index 3a459275c..c7c143955 100644 --- a/polars/io.ts +++ b/polars/io.ts @@ -584,7 +584,7 @@ export function scanIPC(path, options = {}) { * @param options.dtype -Overwrite the dtypes during inference. * @param options.lowMemory - Reduce memory usage in expense of performance. * @param options.commentChar - character that indicates the start of a comment line, for instance '#'. - * @param options.quotChar -character that is used for csv quoting, default = ''. Set to null to turn special handling and escaping of quotes off. + * @param options.quoteChar -character that is used for csv quoting, default = ''. Set to null to turn special handling and escaping of quotes off. * @param options.nullValues - Values to interpret as null values. You can provide a * - `string` -> all values encountered equal to this string will be null * - `Array` -> A null value per column.