summaryrefslogtreecommitdiff
path: root/doc/api/stream.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/stream.md')
-rw-r--r--doc/api/stream.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/api/stream.md b/doc/api/stream.md
index 743bea7955..c26ab800fa 100644
--- a/doc/api/stream.md
+++ b/doc/api/stream.md
@@ -1752,6 +1752,10 @@ constructor and implement *both* the `readable._read()` and
* `writableObjectMode` {boolean} Defaults to `false`. Sets `objectMode`
for writable side of the stream. Has no effect if `objectMode`
is `true`.
+ * `readableHighWaterMark` {number} Sets `highWaterMark` for the readable side
+ of the stream. Has no effect if `highWaterMark` is provided.
+ * `writableHighWaterMark` {number} Sets `highWaterMark` for the writable side
+ of the stream. Has no effect if `highWaterMark` is provided.
For example: