Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
doc: add spaces to child.kill example
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
commit b16a328edee8a8e9c86b079525ece0579859e426
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