Browse Source

doc: fix link in the stream doc

fixing typo
fixing broken links

PR-URL: https://github.com/nodejs/node/pull/7347
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
v7.x
Italo A. Casas 8 years ago
committed by Anna Henningsen
parent
commit
79f961aa09
No known key found for this signature in database GPG Key ID: D8B9F5AEAE84E4CF
  1. 18
      doc/api/stream.md

18
doc/api/stream.md

@ -169,7 +169,7 @@ are not required to implement the stream interfaces directly and will generally
have no reason to call `require('stream')`.
Developers wishing to implement new types of streams should refer to the
section [API for Stream Implemeters][].
section [API for Stream Implementers][].
### Writable Streams
@ -863,7 +863,7 @@ pulled out of the source, so that the data can be passed on to some other party.
[`'end'`][] event has been emitted or a runtime error will be thrown.
Developers using `stream.unshift()` often should consider switching to
use of a [Transform][] stream instead. See the [API for Stream Implemeters][]
use of a [Transform][] stream instead. See the [API for Stream Implementers][]
section for more information.
```js
@ -969,7 +969,7 @@ Examples of Transform streams include:
* [crypto streams][crypto]
## API for Stream Implemeters
## API for Stream Implementers
<!--type=misc-->
@ -1013,7 +1013,7 @@ on the type of stream being created, as detailed in the chart below:
<p>Reading only</p>
</td>
<td>
<p>[Readable](#stream_class_stream_readable_1)</p>
<p>[Readable](#stream_class_stream_readable)</p>
</td>
<td>
<p><code>[_read][stream-_read]</code></p>
@ -1024,7 +1024,7 @@ on the type of stream being created, as detailed in the chart below:
<p>Writing only</p>
</td>
<td>
<p>[Writable](#stream_class_stream_writable_1)</p>
<p>[Writable](#stream_class_stream_writable)</p>
</td>
<td>
<p><code>[_write][stream-_write]</code>, <code>[_writev][stream-_writev]</code></p>
@ -1035,7 +1035,7 @@ on the type of stream being created, as detailed in the chart below:
<p>Reading and writing</p>
</td>
<td>
<p>[Duplex](#stream_class_stream_duplex_1)</p>
<p>[Duplex](#stream_class_stream_duplex)</p>
</td>
<td>
<p><code>[_read][stream-_read]</code>, <code>[_write][stream-_write]</code>, <code>[_writev][stream-_writev]</code></p>
@ -1046,7 +1046,7 @@ on the type of stream being created, as detailed in the chart below:
<p>Operate on written data, then read the result</p>
</td>
<td>
<p>[Transform](#stream_class_stream_transform_1)</p>
<p>[Transform](#stream_class_stream_transform)</p>
</td>
<td>
<p><code>[_transform][stream-_transform]</code>, <code>[_flush][stream-_flush]</code></p>
@ -1407,7 +1407,7 @@ class SourceWrapper extends Readable {
}
```
*Note*: The `readable.push()` method is intended be called only by Readable
Implemeters, and only from within the `readable._read()` method.
Implementers, and only from within the `readable._read()` method.
#### Errors While Reading
@ -1893,7 +1893,7 @@ readable buffer so there is nothing for a user to consume.
[`stream.wrap()`]: #stream_readable_wrap_stream
[`tls.CryptoStream`]: tls.html#tls_class_cryptostream
[API for Stream Consumers]: #stream_api_for_stream_consumers
[API for Stream Implemeters]: #stream_api_for_stream_Implemeters
[API for Stream Implementers]: #stream_api_for_stream_implementers
[child process stdin]: child_process.html#child_process_child_stdin
[child process stdout and stderr]: child_process.html#child_process_child_stdout
[Compatibility]: #stream_compatibility_with_older_node_js_versions

Loading…
Cancel
Save