From daf601f5baee0cbb1f63dc7f007b7504ef63c4b5 Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Mon, 16 Mar 2020 12:25:21 +0100 Subject: [PATCH] src: update comment for SetImmediate() Refs: https://github.com/nodejs/node/pull/31502#issuecomment-599242824 --- src/env.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/env.h b/src/env.h index 5f8aece58c36db..350f6f2f1a3682 100644 --- a/src/env.h +++ b/src/env.h @@ -1177,7 +1177,8 @@ class Environment : public MemoryRetainer { } // cb will be called as cb(env) on the next event loop iteration. - // keep_alive will be kept alive between now and after the callback has run. + // Unlike the JS setImmediate() function, nested SetImmediate() calls will + // be run without returning control to the event loop, similar to nextTick(). template inline void SetImmediate(Fn&& cb); template