From 2dea2c9e75c6406b08774b57a2388d75a2eec215 Mon Sep 17 00:00:00 2001 From: Max Nest Date: Tue, 14 Jul 2020 18:03:32 +0500 Subject: [PATCH] docs(std/io): error in the documentation (#6709) --- std/io/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/io/README.md b/std/io/README.md index ead1d1d4c2..09918fcc46 100644 --- a/std/io/README.md +++ b/std/io/README.md @@ -38,7 +38,7 @@ import * as path from "https://deno.land/std/path/mod.ts"; Read reader`[like file]` chunk by chunk, splitting based on delimiter. ```ts title="readStringDelim" -import { readLines } from "https://deno.land/std/io/mod.ts"; +import { readStringDelim } from "https://deno.land/std/io/mod.ts"; import * as path from "https://deno.land/std/path/mod.ts"; const filename = path.join(Deno.cwd(), "std/io/README.md");