Skip to content
This repository has been archived by the owner on Oct 9, 2018. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
corrected job processing function name in README.md. Fixes #2
  • Loading branch information
mef committed Mar 26, 2014
1 parent 180db5e commit 4ad9f6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -47,7 +47,7 @@ var job = new Convoy.Job(jobID);
q.addJob(job);

// Set up a worker
q.process(function(job, done){
q.processJob(function(job, done){
console.log(job);
done(); // or done('an error') if error during processing of the job
});
Expand Down

0 comments on commit 4ad9f6d

Please sign in to comment.