From 8458e71078a7da1af86bc8585117b5d12042df5e Mon Sep 17 00:00:00 2001 From: Erik Kinnunen Date: Fri, 27 Sep 2024 11:22:41 +0300 Subject: [PATCH] Fix typo in json2csv.ts --- src/json2csv.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/json2csv.ts b/src/json2csv.ts index 13ddc38..d26fb1f 100755 --- a/src/json2csv.ts +++ b/src/json2csv.ts @@ -35,7 +35,7 @@ export const Json2Csv = function (options: FullJson2CsvOptions) { * list of field names. */ function processSchemas(documentSchemas: string[][]) { - // If there are no document schemas then there is nothing to diff and no unqiue fields to get + // If there are no document schemas then there is nothing to diff and no unique fields to get if (documentSchemas.length === 0) { return []; }