mirror of
https://github.com/denoland/deno.git
synced 2025-02-01 20:25:12 -05:00
docs(std): Fix typo (#5582)
This commit is contained in:
parent
2d5abbe909
commit
ce81064e4c
1 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,7 @@ writeVarbig(w: Deno.Writer, x: bigint, o: VarbigOptions = {}): Promise<number>
|
|||
|
||||
## CSV
|
||||
|
||||
- **`parseCsv(input: string | BufReader, opt: ParseCsvOptions): Promise<unknown[]>`**:
|
||||
- **`parse(input: string | BufReader, opt: ParseCsvOptions): Promise<unknown[]>`**:
|
||||
Read the string/buffer into an
|
||||
|
||||
### Usage
|
||||
|
@ -38,7 +38,7 @@ writeVarbig(w: Deno.Writer, x: bigint, o: VarbigOptions = {}): Promise<number>
|
|||
const string = "a,b,c\nd,e,f";
|
||||
|
||||
console.log(
|
||||
await parseCsv(string, {
|
||||
await parse(string, {
|
||||
header: false,
|
||||
})
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue