Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to stdout page, #656

Merged
merged 2 commits into from
Aug 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions runtime/tutorials/unix_cat.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ oldUrl:
line arguments.
- [Deno.open](https://docs.deno.com/api/deno/~/Deno.open) is used to get a
handle to a file.
- [Deno.stdout.writable](https://docs.deno.com/api/deno/~/Deno.stdout.writable)
is used to get a writable stream to the console standard output.
- [Deno.stdout.writable](https://docs.deno.com/api/deno/~/Deno.stdout) is used
to get a writable stream to the console standard output.
- [Deno.FsFile.readable](https://docs.deno.com/api/deno/~/Deno.FsFile#property_readable)
is used to get a readable stream from the file. (This readable stream closes
the file when it is finished reading, so it is not necessary to close the file
Expand Down