Browse Source

doc: minor typo fixes in stream docs

PR-URL: https://github.com/nodejs/node/pull/7763
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Minwoo Jung <jmwsoft@gmail.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
v6.x
Alex Perkins 9 years ago
committed by cjihrig
parent
commit
5c4b938665
  1. 6
      doc/api/stream.md

6
doc/api/stream.md

@ -20,7 +20,7 @@ const stream = require('stream');
``` ```
While it is important for all Node.js users to understand how streams works, While it is important for all Node.js users to understand how streams works,
the `stream` module itself is most useful for developer's that are creating new the `stream` module itself is most useful for developers that are creating new
types of stream instances. Developer's who are primarily *consuming* stream types of stream instances. Developer's who are primarily *consuming* stream
objects will rarely (if ever) have need to use the `stream` module directly. objects will rarely (if ever) have need to use the `stream` module directly.
@ -343,7 +343,7 @@ The buffered data will be flushed when either the [`stream.uncork()`][] or
[`stream.end()`][stream-end] methods are called. [`stream.end()`][stream-end] methods are called.
The primary intent of `writable.cork()` is to avoid a situation where writing The primary intent of `writable.cork()` is to avoid a situation where writing
many small chunks of data to a stream do not cause an backup in the internal many small chunks of data to a stream do not cause a backup in the internal
buffer that would have an adverse impact on performance. In such situations, buffer that would have an adverse impact on performance. In such situations,
implementations that implement the `writable._writev()` method can perform implementations that implement the `writable._writev()` method can perform
buffered writes in a more optimized manner. buffered writes in a more optimized manner.
@ -1554,7 +1554,7 @@ class Counter extends Readable {
A [Duplex][] stream is one that implements both [Readable][] and [Writable][], A [Duplex][] stream is one that implements both [Readable][] and [Writable][],
such as a TCP socket connection. such as a TCP socket connection.
Because Javascript does not have support for multiple inheritance, the Because JavaScript does not have support for multiple inheritance, the
`stream.Duplex` class is extended to implement a [Duplex][] stream (as opposed `stream.Duplex` class is extended to implement a [Duplex][] stream (as opposed
to extending the `stream.Readable` *and* `stream.Writable` classes). to extending the `stream.Readable` *and* `stream.Writable` classes).

Loading…
Cancel
Save