From e9bdd17cef13bc3673c4b593c72dfdafda67a5ba Mon Sep 17 00:00:00 2001 From: James Coglan Date: Mon, 29 Apr 2013 21:54:52 +0100 Subject: [PATCH] Correct a typo in stream docs. --- lib/websocket/streams.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/websocket/streams.js b/lib/websocket/streams.js index 044f5dd..d91856e 100644 --- a/lib/websocket/streams.js +++ b/lib/websocket/streams.js @@ -121,7 +121,7 @@ Messages.prototype.write = function(message) { return !this._paused; }; -// The Messages end() method will be caused when a stream piping into it emits +// The Messages end() method will be called when a stream piping into it emits // 'end'. Many streams may be piped into the WebSocket and one of them ending // does not mean the whole socket is done, so just process the input and move // on leaving the socket open.