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

Fix typo in WritableStream constructor #908

Merged
merged 1 commit into from
Mar 14, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -2997,8 +2997,8 @@ WritableStream(<var>underlyingSink</var> = {}, <var>strategy</var> = {})</h4>
<emu-alg>
1. Perform ! InitializeWritableStream(_this_).
1. Let _type_ be ? GetV(_underlyingSink_, `"type"`).
1. Let _size_ be ? GetV(_readableStrategy_, `"size"`).
1. Let _highWaterMark_ be ? GetV(_readableStrategy_, `"highWaterMark"`).
1. Let _size_ be ? GetV(_strategy_, `"size"`).
1. Let _highWaterMark_ be ? GetV(_strategy_, `"highWaterMark"`).
1. If _type_ is not *undefined*, throw a *RangeError* exception. <p class="note">This is to allow us to add new
potential types in the future, without backward-compatibility concerns.</p>
1. Let _sizeAlgorithm_ be ? MakeSizeAlgorithmFromSizeFunction(_size_).
Expand Down