From 160ae044184ad88904c7fbdaba7c5c6aa289d39f Mon Sep 17 00:00:00 2001 From: Cedric Vangout Date: Wed, 7 Oct 2020 18:01:35 +0200 Subject: [PATCH] docs(encoding/csv): update the usage of ParseOptions (denoland/deno#7857) --- encoding/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/encoding/README.md b/encoding/README.md index 80533768e..a165af072 100644 --- a/encoding/README.md +++ b/encoding/README.md @@ -87,7 +87,7 @@ const string = "a,b,c\nd,e,f"; console.log( await parse(string, { - header: false, + skipFirstRow: false, }), ); // output: