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
fixup
  • Loading branch information
Trott committed Dec 10, 2015
commit fe261f1fb4ee46501905c3563d3dcd946f96b60e
8 changes: 4 additions & 4 deletions doc/api/child_process.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ be sent `'SIGTERM'`. See `signal(7)` for a list of available signals.

May emit an `'error'` event when the signal cannot be delivered. Sending a
signal to a child process that has already exited is not an error but may
have unforeseen consequences. Specifically, if the process ID (PID) has been
reassigned to another process, the signal will be delivered to that process
instead. What happens next is anyone's guess.
have unforeseen consequences. Specifically, if the process identifier (PID) has
been reassigned to another process, the signal will be delivered to that
process instead. What happens next is anyone's guess.

Note that while the function is called `kill`, the signal delivered to the
child process may not actually kill it. `kill` really just sends a signal
Expand All @@ -141,7 +141,7 @@ See `kill(2)`

* {Integer}

The process ID (PID) of the child process.
The process identifier (PID) of the child process.

Example:

Expand Down