From 235a9434e4f80c7789910d598e18a6d83ff5c939 Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Wed, 13 Nov 2024 15:46:57 +0900 Subject: [PATCH] fix typo --- csv/unstable_stringify.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csv/unstable_stringify.ts b/csv/unstable_stringify.ts index 0175d65e756b..d77c950c16d0 100644 --- a/csv/unstable_stringify.ts +++ b/csv/unstable_stringify.ts @@ -337,7 +337,7 @@ export function stringify( if (columns && !Array.isArray(columns)) { throw new TypeError( - "Cannot stringify data as the columns option is invalid: colunns must be an array or undefined", + "Cannot stringify data as the columns option is invalid: columns must be an array or undefined", ); }