mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
Avoid unfortunate ASCII arrow splitting (#5325)
This commit is contained in:
parent
7de86ab605
commit
b60cde4c0a
1 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
|
||||
|
|
Loading…
Reference in a new issue