diff --git a/doc/api/stream.md b/doc/api/stream.md index e7047aa209..4be7f3c3f0 100644 --- a/doc/api/stream.md +++ b/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 @@ -1013,7 +1013,7 @@ on the type of stream being created, as detailed in the chart below:
Reading only
[Readable](#stream_class_stream_readable_1)
+[Readable](#stream_class_stream_readable)
[_read][stream-_read]
Writing only
[Writable](#stream_class_stream_writable_1)
+[Writable](#stream_class_stream_writable)
[_write][stream-_write]
, [_writev][stream-_writev]
Reading and writing
[Duplex](#stream_class_stream_duplex_1)
+[Duplex](#stream_class_stream_duplex)
[_read][stream-_read]
, [_write][stream-_write]
, [_writev][stream-_writev]
Operate on written data, then read the result
[Transform](#stream_class_stream_transform_1)
+[Transform](#stream_class_stream_transform)
[_transform][stream-_transform]
, [_flush][stream-_flush]