1
0
Fork 0
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:
Thomas Steiner 2020-05-14 13:00:44 +02:00 committed by GitHub
parent 7de86ab605
commit b60cde4c0a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.