From d7d8ff06b70cf1a2345e3839c503fdb08d75ba49 Mon Sep 17 00:00:00 2001 From: EVILLT Date: Tue, 8 Oct 2019 16:41:17 +0800 Subject: [PATCH] chore: fix typo in `next-tick.js` comment (#10607) --- src/core/util/next-tick.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/util/next-tick.js b/src/core/util/next-tick.js index ae08ea4c..2efb9a95 100644 --- a/src/core/util/next-tick.js +++ b/src/core/util/next-tick.js @@ -72,7 +72,7 @@ if (typeof Promise !== 'undefined' && isNative(Promise)) { isUsingMicroTask = true } else if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) { // Fallback to setImmediate. - // Techinically it leverages the (macro) task queue, + // Technically it leverages the (macro) task queue, // but it is still a better choice than setTimeout. timerFunc = () => { setImmediate(flushCallbacks)