Skip to content

Commit

Permalink
Module name is actually 'event-queue' not a 'event-loop'.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gozala committed Nov 1, 2010
1 parent ede4c4a commit d17f07c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/q.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
// this provides an enqueue method in browsers, Narwhal, and NodeJS
var enqueue;
try {
enqueue = require("event-loop").enqueue;
enqueue = require("event-queue").enqueue;
} catch(e) {
enqueue = function (task) {
setTimeout(task, 0);
Expand Down

0 comments on commit d17f07c

Please sign in to comment.