diff --git a/src/env.h b/src/env.h index 579d0f547e4bdc..0351af5dea0491 100644 --- a/src/env.h +++ b/src/env.h @@ -1171,7 +1171,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