Skip to content

Commit

Permalink
Fixed quoting error in async task code sample for intro-to-jake article
Browse files Browse the repository at this point in the history
  • Loading branch information
ironfroggy authored and creationix committed Oct 1, 2010
1 parent db01b52 commit 6f7d3e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion articles/intro-to-jake/async-jakefile.js
Original file line number Original file line Diff line number Diff line change
@@ -1,7 +1,7 @@
desc('This is an asynchronous task.'); desc('This is an asynchronous task.');
task('asynchronous', [], function () { task('asynchronous', [], function () {
setTimeout(function () { setTimeout(function () {
console.log('Yay, I'm asynchronous!'); console.log("Yay, I'm asynchronous!");
complete(); complete();
}, 1000); }, 1000);
}, true); }, true);

0 comments on commit 6f7d3e5

Please sign in to comment.