summaryrefslogtreecommitdiff
path: root/std/io/README.md
diff options
context:
space:
mode:
authorTrivikram Kamat <16024985+trivikr@users.noreply.github.com>2020-10-03 13:19:11 -0700
committerGitHub <noreply@github.com>2020-10-04 07:19:11 +1100
commitd0eb179132c60a7c2513c9d19db03e3d5ca00c70 (patch)
tree627339e0dc2212ed861184d46b6af31605224d24 /std/io/README.md
parent391eed42f41bd277fff936192b474bfd52eaa1a0 (diff)
docs: end sentences with a period in markdown (#7813)
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";