summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBao Pham <gbaopham@gmail.com>2018-01-30 00:33:37 +0800
committerHubert Argasinski <argasinski.hubert@gmail.com>2018-01-29 11:33:37 -0500
commitd02807894d9bcf6bff076413e3c7230e7df0f35a (patch)
tree96f870bf2f201c645b8fc1efd1bb07e3fc324768
parent2afb668280103d7747d9da51500a8fbd0d2f2533 (diff)
downloadasync-d02807894d9bcf6bff076413e3c7230e7df0f35a.tar.gz
Fix typo (#1511)
-rw-r--r--lib/nextTick.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/nextTick.js b/lib/nextTick.js
index 0e2e2e0..fb63898 100644
--- a/lib/nextTick.js
+++ b/lib/nextTick.js
@@ -4,7 +4,7 @@ import { hasNextTick, hasSetImmediate, fallback, wrap } from './internal/setImm
/**
* Calls `callback` on a later loop around the event loop. In Node.js this just
- * calls `process.nextTicl`. In the browser it will use `setImmediate` if
+ * calls `process.nextTick`. In the browser it will use `setImmediate` if
* available, otherwise `setTimeout(callback, 0)`, which means other higher
* priority events may precede the execution of `callback`.
*