Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
doc: fix typo
  • Loading branch information
Y1D7NG committed Apr 25, 2022
commit 62203b12cb6a5801f40a8dcb9336db36f21b3209
8 changes: 4 additions & 4 deletions doc/api/webstreams.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,10 +206,10 @@ added: v16.5.0
* `preventAbort` {boolean} When `true`, errors in this `ReadableStream`
will not cause `transform.writable` to be aborted.
* `preventCancel` {boolean} When `true`, errors in the destination
`transform.writable` is not cause this `ReadableStream` to be
`transform.writable` will not cause this `ReadableStream` to be
Comment thread
Trott marked this conversation as resolved.
Outdated
canceled.
* `preventClose` {boolean} When `true`, closing this `ReadableStream`
will no cause `transform.writable` to be closed.
will not cause `transform.writable` to be closed.
Comment thread
Trott marked this conversation as resolved.
Outdated
* `signal` {AbortSignal} Allows the transfer of data to be canceled
using an {AbortController}.
* Returns: {ReadableStream} From `transform.readable`.
Expand Down Expand Up @@ -285,9 +285,9 @@ added: v16.5.0
* `preventAbort` {boolean} When `true`, errors in this `ReadableStream`
will not cause `destination` to be aborted.
* `preventCancel` {boolean} When `true`, errors in the `destination`
is not cause this `ReadableStream` to be canceled.
will not cause this `ReadableStream` to be canceled.
* `preventClose` {boolean} When `true`, closing this `ReadableStream`
will no cause `destination` to be closed.
will not cause `destination` to be closed.
Comment thread
Trott marked this conversation as resolved.
Outdated
* `signal` {AbortSignal} Allows the transfer of data to be canceled
using an {AbortController}.
* Returns: A promise fulfilled with `undefined`
Expand Down