Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions doc/api/stream.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,7 @@ of stream class you are writing:
<p>[Writable](#stream_class_stream_writable_1)</p>
</td>
<td>
<p><code>[_write][]</code>, <code>_writev</code></p>
<p><code>[_write][]</code>, <code>[_writev][]</code></p>
</td>
</tr>
<tr>
Expand All @@ -772,7 +772,7 @@ of stream class you are writing:
<p>[Duplex](#stream_class_stream_duplex_1)</p>
</td>
<td>
<p><code>[_read][]</code>, <code>[_write][]</code>, <code>_writev</code></p>
<p><code>[_read][]</code>, <code>[_write][]</code>, <code>[_writev][]</code></p>
</td>
</tr>
<tr>
Expand All @@ -783,7 +783,7 @@ of stream class you are writing:
<p>[Transform](#stream_class_stream_transform_1)</p>
</td>
<td>
<p><code>_transform</code>, <code>_flush</code></p>
<p><code>[_transform][]</code>, <code>[_flush][]</code></p>
</td>
</tr>
</table>
Expand Down Expand Up @@ -1728,3 +1728,12 @@ horribly wrong.
[Writable]: #stream_class_stream_writable
[zlib streams]: zlib.html
[zlib]: zlib.html
[_transform]: #stream_transform_transform_chunk_encoding_callback
[`_transform()`]: #stream_transform_transform_chunk_encoding_callback
[`_transform(chunk, encoding, callback)`]: #stream_transform_transform_chunk_encoding_callback
[_flush]: #stream_transform_flush_callback
[`_flush()`]: #stream_transform_flush_callback
[`_flush(callback)`]: #stream_transform_flush_callback
[_writev]: #stream_writable_writev_chunks_callback
[`_writev()`]: #stream_writable_writev_chunks_callback
[`_writev(chunks, callback)`]: #stream_writable_writev_chunks_callback