From abfb2f5864ed1c9ef7825fd8d36d64907990b263 Mon Sep 17 00:00:00 2001 From: Timothy Gu Date: Wed, 3 Feb 2016 18:33:39 -0800 Subject: [PATCH] doc: fix link in cluster documentation PR-URL: https://github.com/nodejs/node/pull/5068 Reviewed-By: Colin Ihrig Reviewed-By: Brian White Reviewed-By: James M Snell --- doc/api/cluster.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/cluster.markdown b/doc/api/cluster.markdown index b29c13694b00fd..12708cc081402a 100644 --- a/doc/api/cluster.markdown +++ b/doc/api/cluster.markdown @@ -46,7 +46,7 @@ server in a worker. -The worker processes are spawned using the [`child_process.fork`][] method, +The worker processes are spawned using the [`child_process.fork()`][] method, so that they can communicate with the parent via IPC and pass server handles back and forth.