summaryrefslogtreecommitdiff
path: root/docs/examples/unix_cat.md
diff options
context:
space:
mode:
authorTrivikram Kamat <16024985+trivikr@users.noreply.github.com>2020-09-27 10:49:41 -0700
committerGitHub <noreply@github.com>2020-09-27 13:49:41 -0400
commitd2fde8a363f1db9fd37b96b46260dcbf6c4d1b3e (patch)
tree63e876cd972e9d2de192408ba2aee3f508e1c461 /docs/examples/unix_cat.md
parenteaba9adb03f0427ecf0a7a8b6937a6b82e134266 (diff)
doc: end sentences with a period in examples (#7722)
Diffstat (limited to 'docs/examples/unix_cat.md')
-rw-r--r--docs/examples/unix_cat.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/examples/unix_cat.md b/docs/examples/unix_cat.md
index f93d9c94d..b8c6c0d21 100644
--- a/docs/examples/unix_cat.md
+++ b/docs/examples/unix_cat.md
@@ -2,15 +2,15 @@
## Concepts
-- Use the Deno runtime API to output the contents of a file to the console
+- Use the Deno runtime API to output the contents of a file to the console.
- [Deno.args](https://doc.deno.land/builtin/stable#Deno.args) accesses the
- command line arguments
+ command line arguments.
- [Deno.open](https://doc.deno.land/builtin/stable#Deno.open) is used to get a
- handle to a file
+ handle to a file.
- [Deno.copy](https://doc.deno.land/builtin/stable#Deno.copy) is used to
- transfer data from the file to the output stream
+ transfer data from the file to the output stream.
- Files should be closed when you are finished with them
-- Modules can be run directly from remote URLs
+- Modules can be run directly from remote URLs.
## Example