summaryrefslogtreecommitdiff
path: root/docs/getting_started
diff options
context:
space:
mode:
Diffstat (limited to 'docs/getting_started')
-rw-r--r--docs/getting_started/first_steps.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/getting_started/first_steps.md b/docs/getting_started/first_steps.md
index 34250e173..9c51cf8d9 100644
--- a/docs/getting_started/first_steps.md
+++ b/docs/getting_started/first_steps.md
@@ -96,8 +96,8 @@ for (let i = 0; i < Deno.args.length; i++) {
}
```
-The `copy()` function here actually makes no more than the necessary kernel ->
-userspace -> kernel copies. That is, the same memory from which data is read
+The `copy()` function here actually makes no more than the necessary
+kernel→userspace→kernel copies. That is, the same memory from which data is read
from the file, is written to stdout. This illustrates a general design goal for
I/O streams in Deno.