summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEivind Uggedal <eivind@uggedal.com>2013-07-04 18:52:14 +0200
committerisaacs <i@izs.me>2013-08-19 15:45:35 -0700
commit732f8b964152d4bff6033628c9b3904cf0ba554d (patch)
treee14725087b43dd56885549222f5b30248a6eecb0
parent545807918ee72f55dfefc6a4c557e3d4e2018ee1 (diff)
downloadnode-732f8b964152d4bff6033628c9b3904cf0ba554d.tar.gz
doc: add missing word in Transform stream intro
-rw-r--r--doc/api/stream.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/stream.markdown b/doc/api/stream.markdown
index 3e810930d..a2f5e1fb0 100644
--- a/doc/api/stream.markdown
+++ b/doc/api/stream.markdown
@@ -1037,8 +1037,8 @@ connected in some way to the input, such as a [zlib][] stream or a
There is no requirement that the output be the same size as the input,
the same number of chunks, or arrive at the same time. For example, a
Hash stream will only ever have a single chunk of output which is
-provided when the input is ended. A zlib stream will either produce
-much smaller or much larger than its input.
+provided when the input is ended. A zlib stream will produce output
+that is either much smaller or much larger than its input.
Rather than implement the [`_read()`][] and [`_write()`][] methods, Transform
classes must implement the `_transform()` method, and may optionally