File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -580,8 +580,8 @@ The Readable can switch back to paused mode using one of the following:
580
580
581
581
* If there are no pipe destinations, by calling the
582
582
[ ` stream.pause() ` ] [ stream-pause ] method.
583
- * If there are pipe destinations, by removing any [ ` 'data' ` ] [ ] event
584
- handlers, and removing all pipe destinations by calling the
583
+ * If there are pipe destinations, by removing all pipe destinations.
584
+ Multiple pipe destinations may be removed by calling the
585
585
[ ` stream.unpipe() ` ] [ ] method.
586
586
587
587
The important concept to remember is that a Readable will not generate data
@@ -1459,7 +1459,7 @@ write succeeded.
1459
1459
1460
1460
All calls to ` writable.write() ` that occur between the time ` writable._write() `
1461
1461
is called and the ` callback ` is called will cause the written data to be
1462
- buffered. Once the ` callback ` is invoked, the stream will emit a [ ` 'drain' ` ] [ ]
1462
+ buffered. When the ` callback ` is invoked, the stream might emit a [ ` 'drain' ` ] [ ]
1463
1463
event. If a stream implementation is capable of processing multiple chunks of
1464
1464
data at once, the ` writable._writev() ` method should be implemented.
1465
1465
You can’t perform that action at this time.
0 commit comments