From 412628df86de8e5160ae958a7d9a5e8e980d98e5 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Tue, 8 Sep 2015 15:35:51 -0700 Subject: [PATCH] doc: update links --- doc/api/child_process.markdown | 2 +- doc/api/cluster.markdown | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/child_process.markdown b/doc/api/child_process.markdown index 31ac72451d5e1b..f2de9b01bb0915 100644 --- a/doc/api/child_process.markdown +++ b/doc/api/child_process.markdown @@ -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' diff --git a/doc/api/cluster.markdown b/doc/api/cluster.markdown index d29d5973d85540..6ceb033181d93a 100644 --- a/doc/api/cluster.markdown +++ b/doc/api/cluster.markdown @@ -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()`.