Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: remove redundant only #14858

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions doc/api/stream.md
Original file line number Diff line number Diff line change
Expand Up @@ -1383,7 +1383,7 @@ resource.
[`writable._write()`][stream-_write].

*Note*: This function MUST NOT be called by application code directly. It
should be implemented by child classes, and called only by the internal Writable
should be implemented by child classes, and called by the internal Writable
class methods only.

The `callback` method must be called to signal either that the write completed
Expand Down Expand Up @@ -1418,7 +1418,7 @@ user programs.
argument) to be invoked when processing is complete for the supplied chunks.

*Note*: This function MUST NOT be called by application code directly. It
should be implemented by child classes, and called only by the internal Writable
should be implemented by child classes, and called by the internal Writable
class methods only.

The `writable._writev()` method may be implemented in addition to
Expand Down Expand Up @@ -1573,7 +1573,7 @@ const myReadable = new Readable({
* `size` {number} Number of bytes to read asynchronously

*Note*: This function MUST NOT be called by application code directly. It
should be implemented by child classes, and called only by the internal Readable
should be implemented by child classes, and called by the internal Readable
class methods only.

All Readable stream implementations must provide an implementation of the
Expand Down Expand Up @@ -1974,7 +1974,7 @@ after all data has been output, which occurs after the callback in
argument and data) to be called when remaining data has been flushed.

*Note*: This function MUST NOT be called by application code directly. It
should be implemented by child classes, and called only by the internal Readable
should be implemented by child classes, and called by the internal Readable
class methods only.

In some cases, a transform operation may need to emit an additional bit of
Expand Down Expand Up @@ -2009,7 +2009,7 @@ user programs.
processed.

*Note*: This function MUST NOT be called by application code directly. It
should be implemented by child classes, and called only by the internal Readable
should be implemented by child classes, and called by the internal Readable
class methods only.

All Transform stream implementations must provide a `_transform()`
Expand Down