Skip to content

Commit

Permalink
Merge pull request #14 from Xavi-/patch-1
Browse files Browse the repository at this point in the history
Updated README
  • Loading branch information
creationix committed May 26, 2011
2 parents b989903 + 1571911 commit b67f971
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.markdown
Expand Up @@ -39,8 +39,8 @@ Also there is support for parallel actions:
// Show the result when done
function showStuff(err, code, users) {
if (err) throw err;
sys.puts(code);
sys.puts(users);
console.log(code);
console.log(users);
}
)

Expand All @@ -64,7 +64,7 @@ Also you can use group with a dynamic number of common tasks.
},
function showAll(err , files) {
if (err) throw err;
sys.p(files);
console.dir(files);
}
);

Expand Down

0 comments on commit b67f971

Please sign in to comment.