From 202b07f4148d00bbf8fe50dc4b05d27a58848d70 Mon Sep 17 00:00:00 2001 From: Wang Xinyong Date: Fri, 3 Feb 2017 14:00:20 +0800 Subject: [PATCH] stream: fix comment for sync flag of ReadableState It seems that the comment for sync flag of ReadableState is copied from WritableState without modification. PR-URL: https://github.com/nodejs/node/pull/11139 Reviewed-By: Matteo Collina Reviewed-By: Anna Henningsen --- lib/_stream_readable.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/_stream_readable.js b/lib/_stream_readable.js index 49ea08e85707fd..0c5d1ef5d887ea 100644 --- a/lib/_stream_readable.js +++ b/lib/_stream_readable.js @@ -63,10 +63,10 @@ function ReadableState(options, stream) { this.endEmitted = false; this.reading = false; - // a flag to be able to tell if the onwrite cb is called immediately, - // or on a later tick. We set this to true at first, because any - // actions that shouldn't happen until "later" should generally also - // not happen before the first write call. + // a flag to be able to tell if the event 'readable'/'data' is emitted + // immediately, or on a later tick. We set this to true at first, because + // any actions that shouldn't happen until "later" should generally also + // not happen before the first read call. this.sync = true; // whenever we return null, then we set a flag to say