summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--std/io/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/io/README.md b/std/io/README.md
index ead1d1d4c..09918fcc4 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");