summaryrefslogtreecommitdiff
path: root/docs/examples/unix_cat.md
diff options
context:
space:
mode:
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