From ce81064e4c78a5d6213aa19351281c6b86e3e1cb Mon Sep 17 00:00:00 2001 From: pontakornth <37771900+pontakornth@users.noreply.github.com> Date: Mon, 18 May 2020 17:10:19 +0700 Subject: [PATCH] docs(std): Fix typo (#5582) --- std/encoding/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/std/encoding/README.md b/std/encoding/README.md index 9737133607..c830133ba1 100644 --- a/std/encoding/README.md +++ b/std/encoding/README.md @@ -29,7 +29,7 @@ writeVarbig(w: Deno.Writer, x: bigint, o: VarbigOptions = {}): Promise ## CSV -- **`parseCsv(input: string | BufReader, opt: ParseCsvOptions): Promise`**: +- **`parse(input: string | BufReader, opt: ParseCsvOptions): Promise`**: Read the string/buffer into an ### Usage @@ -38,7 +38,7 @@ writeVarbig(w: Deno.Writer, x: bigint, o: VarbigOptions = {}): Promise const string = "a,b,c\nd,e,f"; console.log( - await parseCsv(string, { + await parse(string, { header: false, }) );