@@ -210,10 +210,10 @@ added: v16.5.0
210
210
* ` preventAbort ` {boolean} When ` true ` , errors in this ` ReadableStream `
211
211
will not cause ` transform.writable ` to be aborted.
212
212
* ` preventCancel ` {boolean} When ` true ` , errors in the destination
213
- ` transform.writable ` is not cause this ` ReadableStream ` to be
213
+ ` transform.writable ` do not cause this ` ReadableStream ` to be
214
214
canceled.
215
215
* ` preventClose ` {boolean} When ` true ` , closing this ` ReadableStream `
216
- will no cause ` transform.writable ` to be closed.
216
+ does not cause ` transform.writable ` to be closed.
217
217
* ` signal ` {AbortSignal} Allows the transfer of data to be canceled
218
218
using an {AbortController}.
219
219
* Returns: {ReadableStream} From ` transform.readable ` .
@@ -287,12 +287,11 @@ added: v16.5.0
287
287
` ReadableStream ` 's data will be written.
288
288
* ` options ` {Object}
289
289
* ` preventAbort ` {boolean} When ` true ` , errors in this ` ReadableStream `
290
- will not cause ` transform.writable ` to be aborted.
291
- * ` preventCancel ` {boolean} When ` true ` , errors in the destination
292
- ` transform.writable ` is not cause this ` ReadableStream ` to be
293
- canceled.
290
+ will not cause ` destination ` to be aborted.
291
+ * ` preventCancel ` {boolean} When ` true ` , errors in the ` destination `
292
+ will not cause this ` ReadableStream ` to be canceled.
294
293
* ` preventClose ` {boolean} When ` true ` , closing this ` ReadableStream `
295
- will no cause ` transform.writable ` to be closed.
294
+ does not cause ` destination ` to be closed.
296
295
* ` signal ` {AbortSignal} Allows the transfer of data to be canceled
297
296
using an {AbortController}.
298
297
* Returns: A promise fulfilled with ` undefined `
@@ -323,7 +322,7 @@ added: v16.5.0
323
322
* ` options ` {Object}
324
323
* ` preventCancel ` {boolean} When ` true ` , prevents the {ReadableStream}
325
324
from being closed when the async iterator abruptly terminates.
326
- ** Defaults ** : ` false `
325
+ ** Default ** : ` false ` .
327
326
328
327
Creates and returns an async iterator usable for consuming this
329
328
` ReadableStream ` 's data.
@@ -457,7 +456,7 @@ added: v16.5.0
457
456
-->
458
457
459
458
The ` ReadableStreamBYOBReader ` is an alternative consumer for
460
- byte-oriented {ReadableStream}' s (those that are created with
459
+ byte-oriented {ReadableStream}s (those that are created with
461
460
` underlyingSource.type ` set equal to ` 'bytes' ` when the
462
461
` ReadableStream ` was created).
463
462
0 commit comments