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

Typo in ReadableStreamBYOBReader doc #2864

Merged
merged 2 commits into from
Mar 4, 2021
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
2 changes: 1 addition & 1 deletion files/en-us/web/api/readablestreambyobreader/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ <h2 id="Methods">Methods</h2>
<dt>{{domxref("ReadableStreamBYOBReader.cancel()")}}</dt>
<dd>Returns a {{jsref("Promise")}} that resolves when the stream is canceled. Calling this method signals a loss of interest in the stream by a consumer. The supplied <code>reason</code> argument will be given to the underlying source, which may or may not use it.</dd>
<dt>{{domxref("ReadableStreamBYOBReader.read()")}}</dt>
<dd>Returns a {{jsref("Promise")}} that resolves with an object indicating the state of the stream: either the net chuck in the stream or an indication that the stream is closed.</dd>
<dd>Returns a {{jsref("Promise")}} that resolves with an object indicating the state of the stream: either the chunk in the stream or an indication that the stream is closed.</dd>
sideshowbarker marked this conversation as resolved.
Show resolved Hide resolved
<dt>{{domxref("ReadableStreamBYOBReader.releaseLock()")}}</dt>
<dd>Releases the reader's lock on the stream.</dd>
</dl>
Expand Down