diff --git a/doc/api/stream.md b/doc/api/stream.md index c807f1ecbaa51a..e63fa4fd6a92ec 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -1882,8 +1882,8 @@ methods only. The `writable._writev()` method may be implemented in addition or alternatively to `writable._write()` in stream implementations that are capable of processing -multiple chunks of data at once. If implemented, the method will be called with -all chunks of data currently buffered in the write queue. +multiple chunks of data at once. If implemented and if there is buffered data +from previous writes, `_writev()` will be called instead of `_write()`. The `writable._writev()` method is prefixed with an underscore because it is internal to the class that defines it, and should never be called directly by