From 60fd8dd526058c52cc385afa4c73bbd877499ffa Mon Sep 17 00:00:00 2001 From: Brian White Date: Tue, 23 Sep 2014 12:49:19 -0400 Subject: [PATCH] doc: improve wording --- doc/api/stream.markdown | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/api/stream.markdown b/doc/api/stream.markdown index 5a823e72385..23d26c74141 100644 --- a/doc/api/stream.markdown +++ b/doc/api/stream.markdown @@ -1091,19 +1091,19 @@ as a result of this chunk. Call the callback function only when the current chunk is completely consumed. Note that there may or may not be output as a result of any -particular input chunk. If you supply as the second argument to the -it will be passed to push method, in other words the following are +particular input chunk. If you supply a second argument to the callback +it will be passed to the push method. In other words, the following are equivalent: ```javascript transform.prototype._transform = function (data, encoding, callback) { this.push(data); callback(); -} +}; transform.prototype._transform = function (data, encoding, callback) { callback(null, data); -} +}; ``` This method is prefixed with an underscore because it is internal to