summaryrefslogtreecommitdiff
path: root/lib/_stream_transform.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/_stream_transform.js')
-rw-r--r--lib/_stream_transform.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/_stream_transform.js b/lib/_stream_transform.js
index 0a37b6a4d4..d7fcb13395 100644
--- a/lib/_stream_transform.js
+++ b/lib/_stream_transform.js
@@ -116,10 +116,10 @@ function Transform(options) {
writeencoding: null
};
- // start out asking for a readable event once data is transformed.
+ // Start out asking for a readable event once data is transformed.
this._readableState.needReadable = true;
- // we have implemented the _read method, and done the other things
+ // We have implemented the _read method, and done the other things
// that Readable wants before the first _read call, so unset the
// sync guard flag.
this._readableState.sync = false;