From 13ed817fec5792c7272d9a149ad45cfeddea5638 Mon Sep 17 00:00:00 2001 From: Evan Solomon Date: Fri, 2 Aug 2013 09:57:46 -0700 Subject: [PATCH] doc: add a missing word in streams doc Ignore encoding *if* chunk is a buffer --- 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 d202463b80..ecdfbdc50d 100644 --- a/doc/api/stream.markdown +++ b/doc/api/stream.markdown @@ -1000,7 +1000,7 @@ initialized. * `chunk` {Buffer | String} The chunk to be written. Will always be a buffer unless the `decodeStrings` option was set to `false`. * `encoding` {String} If the chunk is a string, then this is the - encoding type. Ignore chunk is a buffer. Note that chunk will + encoding type. Ignore if chunk is a buffer. Note that chunk will **always** be a buffer unless the `decodeStrings` option is explicitly set to `false`. * `callback` {Function} Call this function (optionally with an error