Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
doc: fix webstream close reject state state doc
The `closed` promise may reject. Document the states where it rejects
based on the spec.

Fixes: #41858

PR-URL: #41860
Co-Authored-By: Mattias Buelens <mattias@buelens.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
  • Loading branch information
2 people authored and danielleadams committed Apr 21, 2022
1 parent 51847e0 commit b950f5d
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions doc/api/webstreams.md
Expand Up @@ -425,7 +425,8 @@ added: v16.5.0
-->

* Type: {Promise} Fulfilled with `undefined` when the associated
{ReadableStream} is closed or this reader's lock is released.
{ReadableStream} is closed or rejected if the stream errors or the reader's
lock is released before the stream finishes closing.

#### `readableStreamDefaultReader.read()`

Expand Down Expand Up @@ -552,7 +553,8 @@ added: v16.5.0
-->
* Type: {Promise} Fulfilled with `undefined` when the associated
{ReadableStream} is closed or this reader's lock is released.
{ReadableStream} is closed or rejected if the stream errors or the reader's
lock is released before the stream finishes closing.
#### `readableStreamBYOBReader.read(view)`
Expand Down Expand Up @@ -902,9 +904,9 @@ Closes the `WritableStream` when no additional writes are expected.
added: v16.5.0
-->
* Type: A promise that is fulfilled with `undefined` when the
associated {WritableStream} is closed or this writer's lock is
released.
* Type: {Promise} Fulfilled with `undefined` when the associated
{WritableStream} is closed or rejected if the stream errors or the writer's
lock is released before the stream finishes closing.
#### `writableStreamDefaultWriter.desiredSize`
Expand Down

0 comments on commit b950f5d

Please sign in to comment.