aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGravatar Vaughan Rouesnel <vjpr@users.noreply.github.com> 2023-08-02 21:59:21 +0200
committerGravatar GitHub <noreply@github.com> 2023-08-02 12:59:21 -0700
commit4f39d5b54a21454f1c71922dbca87a5d6d69e3a0 (patch)
tree7d5b6be9516df4857b6c8757d9f57c61c4d0c405 /docs
parentd9f162ff954ffe46403b40dee3844568498799aa (diff)
downloadbun-4f39d5b54a21454f1c71922dbca87a5d6d69e3a0.tar.gz
bun-4f39d5b54a21454f1c71922dbca87a5d6d69e3a0.tar.zst
bun-4f39d5b54a21454f1c71922dbca87a5d6d69e3a0.zip
Update streams.md (#3926)
Diffstat (limited to 'docs')
-rw-r--r--docs/api/streams.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api/streams.md b/docs/api/streams.md
index 210090927..f0fa75f29 100644
--- a/docs/api/streams.md
+++ b/docs/api/streams.md
@@ -1,6 +1,6 @@
Streams are an important abstraction for working with binary data without loading it all into memory at once. They are commonly used for reading and writing files, sending and receiving network requests, and processing large amounts of data.
-Bun implements the Web APIs [`ReadableStream`](https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream) and [`WritableStream`](https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream).
+Bun implements the Web APIs [`ReadableStream`](https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream) and [`WritableStream`](https://developer.mozilla.org/en-US/docs/Web/API/WritableStream).
{% callout %}
Bun also implements the `node:stream` module, including [`Readable`](https://nodejs.org/api/stream.html#stream_readable_streams), [`Writable`](https://nodejs.org/api/stream.html#stream_writable_streams), and [`Duplex`](https://nodejs.org/api/stream.html#stream_duplex_and_transform_streams). For complete documentation, refer to the [Node.js docs](https://nodejs.org/api/stream.html).