Skip to content

Commit

Permalink
doc: add spaces to child.kill example
Browse files Browse the repository at this point in the history
PR-URL: #1503
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Evan Lucas <evanlucas@me.com>
  • Loading branch information
enaqx authored and brendanashworth committed Apr 23, 2015
1 parent 2632775 commit b16a328
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/api/child_process.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ be sent `'SIGTERM'`. See `signal(7)` for a list of available signals.
grep = spawn('grep', ['ssh']);

grep.on('close', function (code, signal) {
console.log('child process terminated due to receipt of signal '+signal);
console.log('child process terminated due to receipt of signal ' + signal);
});

// send SIGHUP to process
Expand Down

0 comments on commit b16a328

Please sign in to comment.