Skip to content

Commit d5b36d8

Browse files
committed
fix: Correct typo in the dependency on Underscore.js for AMD module loader
1 parent 95ab01e commit d5b36d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

asynctaskqueue.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
// Register the Queue object in the AMD environment, depending
1919
// on Underscore.js and jQuery.
2020
if (typeof define !== "undefined") {
21-
define("asynctaskqueue", [ "underscrore", "jquery" ], function (_, $) {
21+
define("asynctaskqueue", [ "underscore", "jquery" ], function (_, $) {
2222
// Return the Queue object as the module export.
2323
return factory(_, $);
2424
});

0 commit comments

Comments
 (0)