Skip to content

Commit bfa3cbe

Browse files
GeorgeSapkinMylesBorins
authored andcommitted
doc: remove redundant only from doc/api/stream.md
PR-URL: #14858 Reviewed-By: Evan Lucas <[email protected]> Reviewed-By: Yuta Hiroto <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Vse Mozhet Byt <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 081c3e1 commit bfa3cbe

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/api/stream.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1383,7 +1383,7 @@ resource.
13831383
[`writable._write()`][stream-_write].
13841384

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

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

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

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

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

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

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

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

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

20152015
All Transform stream implementations must provide a `_transform()`

0 commit comments

Comments
 (0)