We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
next-tick.js
1 parent e8ca21f commit d7d8ff0Copy full SHA for d7d8ff0
src/core/util/next-tick.js
@@ -72,7 +72,7 @@ if (typeof Promise !== 'undefined' && isNative(Promise)) {
72
isUsingMicroTask = true
73
} else if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {
74
// Fallback to setImmediate.
75
- // Techinically it leverages the (macro) task queue,
+ // Technically it leverages the (macro) task queue,
76
// but it is still a better choice than setTimeout.
77
timerFunc = () => {
78
setImmediate(flushCallbacks)
0 commit comments