Skip to content

Commit

Permalink
Fix typo (#1511)
Browse files Browse the repository at this point in the history
  • Loading branch information
baopham authored and hargasinski committed Jan 29, 2018
1 parent 2afb668 commit d028078
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/nextTick.js
Expand Up @@ -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`.
*
Expand Down

0 comments on commit d028078

Please sign in to comment.