diff --git a/doc/index.html b/doc/index.html
index 6a610ad279..abe2b0e4b4 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -187,8 +187,12 @@ server.listen(1337, "127.0.0.1");
But what about multiple-processor concurrency? Aren't threads
necessary to scale programs to multi-core computers?
- You can start new processes via child_process.fork()
+ You can start new processes via
+ child_process.fork()
these other processes will be scheduled in parallel.
+ For load balancing incoming connections across multiple processes
+ use the
+ cluster module