@@ -169,7 +169,7 @@ are not required to implement the stream interfaces directly and will generally
169
169
have no reason to call ` require('stream') ` .
170
170
171
171
Developers wishing to implement new types of streams should refer to the
172
- section [ API for Stream Implemeters ] [ ] .
172
+ section [ API for Stream Implementers ] [ ] .
173
173
174
174
### Writable Streams
175
175
@@ -863,7 +863,7 @@ pulled out of the source, so that the data can be passed on to some other party.
863
863
[ ` 'end' ` ] [ ] event has been emitted or a runtime error will be thrown.
864
864
865
865
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 ] [ ]
867
867
section for more information.
868
868
869
869
``` js
@@ -969,7 +969,7 @@ Examples of Transform streams include:
969
969
* [ crypto streams] [ crypto ]
970
970
971
971
972
- ## API for Stream Implemeters
972
+ ## API for Stream Implementers
973
973
974
974
<!-- type=misc-->
975
975
@@ -1013,7 +1013,7 @@ on the type of stream being created, as detailed in the chart below:
1013
1013
<p>Reading only</p>
1014
1014
</td>
1015
1015
<td>
1016
- <p>[Readable](#stream_class_stream_readable_1 )</p>
1016
+ <p>[Readable](#stream_class_stream_readable )</p>
1017
1017
</td>
1018
1018
<td>
1019
1019
<p><code>[_read][stream-_read]</code></p>
@@ -1024,7 +1024,7 @@ on the type of stream being created, as detailed in the chart below:
1024
1024
<p>Writing only</p>
1025
1025
</td>
1026
1026
<td>
1027
- <p>[Writable](#stream_class_stream_writable_1 )</p>
1027
+ <p>[Writable](#stream_class_stream_writable )</p>
1028
1028
</td>
1029
1029
<td>
1030
1030
<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:
1035
1035
<p>Reading and writing</p>
1036
1036
</td>
1037
1037
<td>
1038
- <p>[Duplex](#stream_class_stream_duplex_1 )</p>
1038
+ <p>[Duplex](#stream_class_stream_duplex )</p>
1039
1039
</td>
1040
1040
<td>
1041
1041
<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:
1046
1046
<p>Operate on written data, then read the result</p>
1047
1047
</td>
1048
1048
<td>
1049
- <p>[Transform](#stream_class_stream_transform_1 )</p>
1049
+ <p>[Transform](#stream_class_stream_transform )</p>
1050
1050
</td>
1051
1051
<td>
1052
1052
<p><code>[_transform][stream-_transform]</code>, <code>[_flush][stream-_flush]</code></p>
@@ -1407,7 +1407,7 @@ class SourceWrapper extends Readable {
1407
1407
}
1408
1408
```
1409
1409
* 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.
1411
1411
1412
1412
#### Errors While Reading
1413
1413
@@ -1893,7 +1893,7 @@ readable buffer so there is nothing for a user to consume.
1893
1893
[ `stream.wrap()` ] : #stream_readable_wrap_stream
1894
1894
[ `tls.CryptoStream` ] : tls.html#tls_class_cryptostream
1895
1895
[ 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
1897
1897
[ child process stdin ] : child_process.html#child_process_child_stdin
1898
1898
[ child process stdout and stderr ] : child_process.html#child_process_child_stdout
1899
1899
[ Compatibility ] : #stream_compatibility_with_older_node_js_versions
0 commit comments