Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
doc: fix bug in child_process.spawn() sample code
Browse files Browse the repository at this point in the history
  • Loading branch information
mmorearty authored and bnoordhuis committed Jul 16, 2012
1 parent 23dc099 commit 19aa05f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/api/child_process.markdown
Expand Up @@ -306,7 +306,7 @@ Example: A very elaborate way to run 'ps ax | grep ssh'
});

grep.stdout.on('data', function (data) {
console.log(data);
console.log('' + data);
});

grep.stderr.on('data', function (data) {
Expand Down

0 comments on commit 19aa05f

Please sign in to comment.