summaryrefslogtreecommitdiff
path: root/doc/api/stream.md
diff options
context:
space:
mode:
authorGeorge Sapkin <george.sapkin@gmail.com>2017-08-16 17:06:45 +0200
committerTobias Nießen <tniessen@tnie.de>2017-08-20 11:05:13 +0200
commit4cff2cc20f998656cf227fd31f6cf57561092bef (patch)
treefecc629b0c14c2c13e14382c87708b03f214b1e6 /doc/api/stream.md
parent467385a49b659b704973b8195328775b620ae6ab (diff)
downloadandroid-node-v8-4cff2cc20f998656cf227fd31f6cf57561092bef.tar.gz
android-node-v8-4cff2cc20f998656cf227fd31f6cf57561092bef.tar.bz2
android-node-v8-4cff2cc20f998656cf227fd31f6cf57561092bef.zip
doc: remove redundant only from doc/api/stream.md
PR-URL: https://github.com/nodejs/node/pull/14858 Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'doc/api/stream.md')
-rw-r--r--doc/api/stream.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/api/stream.md b/doc/api/stream.md
index 3663fe2d78..aa95d2e4e4 100644
--- a/doc/api/stream.md
+++ b/doc/api/stream.md
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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()`