Skip to content

Commit 6d9549c

Browse files
italoacasasFishrock123
authored andcommitted
doc: fix link in the stream doc
fixing typo fixing broken links PR-URL: #7347 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
1 parent d584c64 commit 6d9549c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

doc/api/stream.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ are not required to implement the stream interfaces directly and will generally
169169
have no reason to call `require('stream')`.
170170

171171
Developers wishing to implement new types of streams should refer to the
172-
section [API for Stream Implemeters][].
172+
section [API for Stream Implementers][].
173173

174174
### Writable Streams
175175

@@ -863,7 +863,7 @@ pulled out of the source, so that the data can be passed on to some other party.
863863
[`'end'`][] event has been emitted or a runtime error will be thrown.
864864

865865
Developers using `stream.unshift()` often should consider switching to
866-
use of a [Transform][] stream instead. See the [API for Stream Implemeters][]
866+
use of a [Transform][] stream instead. See the [API for Stream Implementers][]
867867
section for more information.
868868

869869
```js
@@ -969,7 +969,7 @@ Examples of Transform streams include:
969969
* [crypto streams][crypto]
970970

971971

972-
## API for Stream Implemeters
972+
## API for Stream Implementers
973973

974974
<!--type=misc-->
975975

@@ -1013,7 +1013,7 @@ on the type of stream being created, as detailed in the chart below:
10131013
<p>Reading only</p>
10141014
</td>
10151015
<td>
1016-
<p>[Readable](#stream_class_stream_readable_1)</p>
1016+
<p>[Readable](#stream_class_stream_readable)</p>
10171017
</td>
10181018
<td>
10191019
<p><code>[_read][stream-_read]</code></p>
@@ -1024,7 +1024,7 @@ on the type of stream being created, as detailed in the chart below:
10241024
<p>Writing only</p>
10251025
</td>
10261026
<td>
1027-
<p>[Writable](#stream_class_stream_writable_1)</p>
1027+
<p>[Writable](#stream_class_stream_writable)</p>
10281028
</td>
10291029
<td>
10301030
<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:
10351035
<p>Reading and writing</p>
10361036
</td>
10371037
<td>
1038-
<p>[Duplex](#stream_class_stream_duplex_1)</p>
1038+
<p>[Duplex](#stream_class_stream_duplex)</p>
10391039
</td>
10401040
<td>
10411041
<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:
10461046
<p>Operate on written data, then read the result</p>
10471047
</td>
10481048
<td>
1049-
<p>[Transform](#stream_class_stream_transform_1)</p>
1049+
<p>[Transform](#stream_class_stream_transform)</p>
10501050
</td>
10511051
<td>
10521052
<p><code>[_transform][stream-_transform]</code>, <code>[_flush][stream-_flush]</code></p>
@@ -1407,7 +1407,7 @@ class SourceWrapper extends Readable {
14071407
}
14081408
```
14091409
*Note*: The `readable.push()` method is intended be called only by Readable
1410-
Implemeters, and only from within the `readable._read()` method.
1410+
Implementers, and only from within the `readable._read()` method.
14111411

14121412
#### Errors While Reading
14131413

@@ -1893,7 +1893,7 @@ readable buffer so there is nothing for a user to consume.
18931893
[`stream.wrap()`]: #stream_readable_wrap_stream
18941894
[`tls.CryptoStream`]: tls.html#tls_class_cryptostream
18951895
[API for Stream Consumers]: #stream_api_for_stream_consumers
1896-
[API for Stream Implemeters]: #stream_api_for_stream_Implemeters
1896+
[API for Stream Implementers]: #stream_api_for_stream_implementers
18971897
[child process stdin]: child_process.html#child_process_child_stdin
18981898
[child process stdout and stderr]: child_process.html#child_process_child_stdout
18991899
[Compatibility]: #stream_compatibility_with_older_node_js_versions

0 commit comments

Comments
 (0)