diff options
author | Thomas Steiner <tomac@google.com> | 2020-05-14 13:00:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-14 07:00:44 -0400 |
commit | b60cde4c0a3e2a14e543ac0436c2147b43bdfb24 (patch) | |
tree | 9a1c1b69402be944e3e680b9dc22ba119c9bcc20 /docs/getting_started | |
parent | 7de86ab605ee94fdbce351c7f3031816c935c393 (diff) |
Avoid unfortunate ASCII arrow splitting (#5325)
Diffstat (limited to 'docs/getting_started')
-rw-r--r-- | docs/getting_started/first_steps.md | 4 |
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. |