@@ -206,10 +206,10 @@ added: v16.5.0
206
206
* ` preventAbort ` {boolean} When ` true ` , errors in this ` ReadableStream `
207
207
will not cause ` transform.writable ` to be aborted.
208
208
* ` preventCancel ` {boolean} When ` true ` , errors in the destination
209
- ` transform.writable ` is not cause this ` ReadableStream ` to be
209
+ ` transform.writable ` do not cause this ` ReadableStream ` to be
210
210
canceled.
211
211
* ` preventClose ` {boolean} When ` true ` , closing this ` ReadableStream `
212
- will no cause ` transform.writable ` to be closed.
212
+ does not cause ` transform.writable ` to be closed.
213
213
* ` signal ` {AbortSignal} Allows the transfer of data to be canceled
214
214
using an {AbortController}.
215
215
* Returns: {ReadableStream} From ` transform.readable ` .
@@ -283,12 +283,11 @@ added: v16.5.0
283
283
` ReadableStream ` 's data will be written.
284
284
* ` options ` {Object}
285
285
* ` preventAbort ` {boolean} When ` true ` , errors in this ` ReadableStream `
286
- will not cause ` transform.writable ` to be aborted.
287
- * ` preventCancel ` {boolean} When ` true ` , errors in the destination
288
- ` transform.writable ` is not cause this ` ReadableStream ` to be
289
- canceled.
286
+ will not cause ` destination ` to be aborted.
287
+ * ` preventCancel ` {boolean} When ` true ` , errors in the ` destination `
288
+ will not cause this ` ReadableStream ` to be canceled.
290
289
* ` preventClose ` {boolean} When ` true ` , closing this ` ReadableStream `
291
- will no cause ` transform.writable ` to be closed.
290
+ does not cause ` destination ` to be closed.
292
291
* ` signal ` {AbortSignal} Allows the transfer of data to be canceled
293
292
using an {AbortController}.
294
293
* Returns: A promise fulfilled with ` undefined `
@@ -319,7 +318,7 @@ added: v16.5.0
319
318
* ` options ` {Object}
320
319
* ` preventCancel ` {boolean} When ` true ` , prevents the {ReadableStream}
321
320
from being closed when the async iterator abruptly terminates.
322
- ** Defaults ** : ` false `
321
+ ** Default ** : ` false ` .
323
322
324
323
Creates and returns an async iterator usable for consuming this
325
324
` ReadableStream ` 's data.
@@ -461,7 +460,7 @@ changes:
461
460
-->
462
461
463
462
The ` ReadableStreamBYOBReader ` is an alternative consumer for
464
- byte-oriented {ReadableStream}' s (those that are created with
463
+ byte-oriented {ReadableStream}s (those that are created with
465
464
` underlyingSource.type ` set equal to ` 'bytes' ` when the
466
465
` ReadableStream ` was created).
467
466
0 commit comments