Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion doc/api/child_process.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ you are listening on both events to fire a function, remember to guard against
calling your function twice.

See also [`ChildProcess#kill()`](#child_process_child_kill_signal) and
[`ChildProcess#send()`](#child_process_child_send_message_sendhandle).
[`ChildProcess#send()`](#child_process_child_send_message_sendhandle_callback).

### Event: 'exit'

Expand Down
2 changes: 1 addition & 1 deletion doc/api/cluster.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ exit, the master may choose not to respawn a worker based on this value.
Send a message to a worker or master, optionally with a handle.

In the master this sends a message to a specific worker. It is identical to
[child.send()](child_process.html#child_process_child_send_message_sendhandle).
[child.send()](child_process.html#child_process_child_send_message_sendhandle_callback).

In a worker this sends a message to the master. It is identical to
`process.send()`.
Expand Down