@@ -651,16 +651,16 @@ enum ReadableStreamType { "bytes", "owning" };
651
651
<p> For an example of how to set up a readable byte stream, including using the different
652
652
controller interface, see [[#example-rbs-push]] .
653
653
654
- <p> Can be set to "<dfn enum-value for="ReadableStreamType">transfer </dfn> " to signal that the
654
+ <p> Can be set to "<dfn enum-value for="ReadableStreamType">owning </dfn> " to signal that the
655
655
constructed {{ReadableStream}} will own chunks (via transfer or serialization) before enqueuing them.
656
656
This ensures that enqueued chunks are not mutable by the source.
657
657
Transferred or serialized chunks may have <dfn>closing steps</dfn> which are executed if
658
658
enqueued chunks are dequeued without being provided to the application, for instance when
659
659
a {{ReadableStream}} is errored.
660
660
</p>
661
661
662
- <p> Setting any value other than "{{ReadableStreamType/bytes}} " or undefined will cause the
663
- {{ReadableStream()}} constructor to throw an exception.
662
+ <p> Setting any value other than "{{ReadableStreamType/bytes}} ", " {{ReadableStreamType/owning}} "
663
+ or undefined will cause the {{ReadableStream()}} constructor to throw an exception.
664
664
665
665
<dt><dfn dict-member for="UnderlyingSource"
666
666
lt="autoAllocateChunkSize"><code> autoAllocateChunkSize</code></dfn> (byte streams only)</dt>
@@ -1581,7 +1581,7 @@ the following table:
1581
1581
</div>
1582
1582
1583
1583
<div algorithm>
1584
- The <dfn id="ref-for- rs-default-controller-enqueue" method
1584
+ The <dfn id="rs-default-controller-enqueue" method
1585
1585
for="ReadableStreamDefaultController"> enqueue(|chunk|, |options|)</dfn> method steps are:
1586
1586
1587
1587
1. Let |transferList| be |options|["transfer"] .
0 commit comments