Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request caolan#50 from brunoqc/master
Fixed a type in the queue sample
  • Loading branch information
Caolan McMahon committed Aug 26, 2011
2 parents f3aec61 + 5804a81 commit e2d6219
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -683,7 +683,7 @@ __Example__
// create a queue object with concurrency 2

var q = async.queue(function (task, callback) {
console.log('hello ' + task.name).
console.log('hello ' + task.name);
callback();
}, 2);

Expand Down

0 comments on commit e2d6219

Please sign in to comment.