diff --git a/src/core/util/next-tick.js b/src/core/util/next-tick.js index ae08ea4cafd..2efb9a9518d 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)