summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCedric Vangout <mail@cvng.dev>2020-10-07 18:01:35 +0200
committerGitHub <noreply@github.com>2020-10-07 18:01:35 +0200
commitb5f06adbf37aa44929d41536186ab07b95b06e62 (patch)
tree4c18ab3fbcd9ee74448bb9ffe839531bb56a55f9
parenta09f4a4abd5a9b537604cbf44416deaae29d87ad (diff)
docs(std/encoding/csv): update the usage of ParseOptions (#7857)
-rw-r--r--std/encoding/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/encoding/README.md b/std/encoding/README.md
index 80533768e..a165af072 100644
--- a/std/encoding/README.md
+++ b/std/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: