From 79e8f65cb1b1e20f8842d7fb012ccd9d04cc4f2f Mon Sep 17 00:00:00 2001 From: Nikolai Vavilov Date: Wed, 30 Apr 2014 22:14:59 +0300 Subject: [PATCH] doc: fix a typo Signed-off-by: Trevor Norris --- doc/api/stream.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/stream.markdown b/doc/api/stream.markdown index fb9047ed346..aaab831894d 100644 --- a/doc/api/stream.markdown +++ b/doc/api/stream.markdown @@ -1428,7 +1428,7 @@ the options object. Setting `objectMode` mid-stream is not safe. For Duplex streams `objectMode` can be set exclusively for readable or writable side with `readableObjectMode` and `writableObjectMode` -respectivly. These options can be used to implement parsers and +respectively. These options can be used to implement parsers and serializers with Transform streams. ```javascript