From 991aa4df29fe6ed836015ed70ef0c9db434d2bd9 Mon Sep 17 00:00:00 2001 From: Sergey Zhigunov Date: Mon, 16 Dec 2019 10:52:42 +0200 Subject: [PATCH] fix: remove misleading note section Fixes: https://github.com/nodejs/node/issues/30801 --- locale/en/docs/guides/event-loop-timers-and-nexttick.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/locale/en/docs/guides/event-loop-timers-and-nexttick.md b/locale/en/docs/guides/event-loop-timers-and-nexttick.md index 921aaae6cd54..dba7ae228cbd 100644 --- a/locale/en/docs/guides/event-loop-timers-and-nexttick.md +++ b/locale/en/docs/guides/event-loop-timers-and-nexttick.md @@ -411,10 +411,6 @@ percentage of the packages on npm. Every day more new modules are being added, which means every day we wait, more potential breakages occur. While they are confusing, the names themselves won't change. -*We recommend developers use `setImmediate()` in all cases because it's -easier to reason about (and it leads to code that's compatible with a -wider variety of environments, like browser JS.)* - ## Why use `process.nextTick()`? There are two main reasons: