summaryrefslogtreecommitdiff
path: root/std/io/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'std/io/README.md')
-rw-r--r--std/io/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/std/io/README.md b/std/io/README.md
index ca0f5f441..25bd9881b 100644
--- a/std/io/README.md
+++ b/std/io/README.md
@@ -6,7 +6,7 @@
### readLines
-Read reader[like file], line by line
+Read reader[like file], line by line:
```ts title="readLines"
import { readLines } from "https://deno.land/std/io/mod.ts";
@@ -128,7 +128,7 @@ base0123456789
### fromStreamReader
-Creates a `Reader` from a `ReadableStreamDefaultReader`
+Creates a `Reader` from a `ReadableStreamDefaultReader`.
```ts
import { fromStreamReader } from "https://deno.land/std/io/mod.ts";
@@ -142,7 +142,7 @@ file.close();
### fromStreamWriter
-Creates a `Writer` from a `WritableStreamDefaultWriter`
+Creates a `Writer` from a `WritableStreamDefaultWriter`.
```ts
import { fromStreamWriter } from "https://deno.land/std/io/mod.ts";