Browse Source

chore: fix typo in `next-tick.js` comment (#10607)

EVILLT 6 years ago
parent
commit
d7d8ff06b7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/core/util/next-tick.js

+ 1 - 1
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)