Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: fix link in the stream doc #7347

Closed
wants to merge 3 commits into from
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
18 changes: 9 additions & 9 deletions doc/api/stream.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -969,7 +969,7 @@ Examples of Transform streams include:
* [crypto streams][crypto]


## API for Stream Implemeters
## API for Stream Implementers

<!--type=misc-->

Expand Down Expand Up @@ -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>
Expand All @@ -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>
Expand All @@ -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>
Expand All @@ -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>
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down