From 226d90a95a380a3e29021c012f222ec9773403eb Mon Sep 17 00:00:00 2001 From: Daeyeon Jeong Date: Thu, 15 Sep 2022 02:16:10 +0900 Subject: [PATCH] doc: use serial comma in stream docs Signed-off-by: Daeyeon Jeong daeyeon.dev@gmail.com PR-URL: https://github.com/nodejs/node/pull/44609 Reviewed-By: theanarkh Reviewed-By: Luigi Pinca Reviewed-By: Akhil Marsonya Reviewed-By: Rich Trott Reviewed-By: Harshitha K P --- doc/api/stream.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/api/stream.md b/doc/api/stream.md index e8bdab43bdee43..9bd9877326fd01 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -594,7 +594,7 @@ added: v11.4.0 * {boolean} Is `true` if it is safe to call [`writable.write()`][stream-write], which means -the stream has not been destroyed, errored or ended. +the stream has not been destroyed, errored, or ended. ##### `writable.writableAborted` @@ -1545,7 +1545,7 @@ changes: * `chunk` {Buffer|Uint8Array|string|null|any} Chunk of data to unshift onto the read queue. For streams not operating in object mode, `chunk` must be a - string, `Buffer`, `Uint8Array` or `null`. For object mode streams, `chunk` + string, `Buffer`, `Uint8Array`, or `null`. For object mode streams, `chunk` may be any JavaScript value. * `encoding` {string} Encoding of string chunks. Must be a valid `Buffer` encoding, such as `'utf8'` or `'ascii'`. @@ -3113,7 +3113,7 @@ added: v1.2.0 For many simple cases, it is possible to create a stream without relying on inheritance. This can be accomplished by directly creating instances of the -`stream.Writable`, `stream.Readable`, `stream.Duplex` or `stream.Transform` +`stream.Writable`, `stream.Readable`, `stream.Duplex`, or `stream.Transform` objects and passing appropriate methods as constructor options. ```js @@ -3741,7 +3741,7 @@ changes: * Returns: {boolean} `true` if additional chunks of data may continue to be pushed; `false` otherwise. -When `chunk` is a `Buffer`, `Uint8Array` or `string`, the `chunk` of data will +When `chunk` is a `Buffer`, `Uint8Array`, or `string`, the `chunk` of data will be added to the internal queue for users of the stream to consume. Passing `chunk` as `null` signals the end of the stream (EOF), after which no more data can be written. @@ -4416,7 +4416,7 @@ situations within Node.js where this is done, particularly in the Use of `readable.push('')` is not recommended. -Pushing a zero-byte string, `Buffer` or `Uint8Array` to a stream that is not in +Pushing a zero-byte string, `Buffer`, or `Uint8Array` to a stream that is not in object mode has an interesting side effect. Because it _is_ a call to [`readable.push()`][stream-push], the call will end the reading process. However, because the argument is an empty string, no data is added to the