Skip to content

Commit

Permalink
doc: add anchors for _transform _flush _writev in stream.markdown
Browse files Browse the repository at this point in the history
PR-URL: nodejs#4448
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
iamchenxin authored and Fishrock123 committed Jan 6, 2016
1 parent f68f86c commit 5a223d6
Showing 1 changed file with 12 additions and 3 deletions.
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

0 comments on commit 5a223d6

Please sign in to comment.