@@ -594,7 +594,7 @@ added: v11.4.0
594
594
* {boolean}
595
595
596
596
Is ` true ` if it is safe to call [ ` writable.write() ` ] [ stream-write ] , which means
597
- the stream has not been destroyed, errored or ended.
597
+ the stream has not been destroyed, errored, or ended.
598
598
599
599
##### ` writable.writableAborted `
600
600
@@ -1547,7 +1547,7 @@ changes:
1547
1547
1548
1548
* ` chunk ` {Buffer|Uint8Array|string|null|any} Chunk of data to unshift onto the
1549
1549
read queue. For streams not operating in object mode, ` chunk ` must be a
1550
- string, ` Buffer ` , ` Uint8Array ` or ` null ` . For object mode streams, ` chunk `
1550
+ string, ` Buffer ` , ` Uint8Array ` , or ` null ` . For object mode streams, ` chunk `
1551
1551
may be any JavaScript value.
1552
1552
* ` encoding ` {string} Encoding of string chunks. Must be a valid
1553
1553
` Buffer ` encoding, such as ` 'utf8' ` or ` 'ascii' ` .
@@ -3135,7 +3135,7 @@ added: v1.2.0
3135
3135
3136
3136
For many simple cases, it is possible to create a stream without relying on
3137
3137
inheritance. This can be accomplished by directly creating instances of the
3138
- ` stream.Writable ` , ` stream.Readable ` , ` stream.Duplex ` or ` stream.Transform `
3138
+ ` stream.Writable ` , ` stream.Readable ` , ` stream.Duplex ` , or ` stream.Transform `
3139
3139
objects and passing appropriate methods as constructor options.
3140
3140
3141
3141
``` js
@@ -3763,7 +3763,7 @@ changes:
3763
3763
* Returns: {boolean} ` true ` if additional chunks of data may continue to be
3764
3764
pushed; ` false ` otherwise.
3765
3765
3766
- When ` chunk ` is a ` Buffer ` , ` Uint8Array ` or ` string ` , the ` chunk ` of data will
3766
+ When ` chunk ` is a ` Buffer ` , ` Uint8Array ` , or ` string ` , the ` chunk ` of data will
3767
3767
be added to the internal queue for users of the stream to consume.
3768
3768
Passing ` chunk ` as ` null ` signals the end of the stream (EOF), after which no
3769
3769
more data can be written.
@@ -4438,7 +4438,7 @@ situations within Node.js where this is done, particularly in the
4438
4438
4439
4439
Use of ` readable.push('') ` is not recommended.
4440
4440
4441
- Pushing a zero-byte string, ` Buffer ` or ` Uint8Array ` to a stream that is not in
4441
+ Pushing a zero-byte string, ` Buffer ` , or ` Uint8Array ` to a stream that is not in
4442
4442
object mode has an interesting side effect. Because it _ is_ a call to
4443
4443
[ ` readable.push() ` ] [ stream-push ] , the call will end the reading process.
4444
4444
However, because the argument is an empty string, no data is added to the
0 commit comments