From 69d3bf10685c248a369abacc277c5adb344a8b48 Mon Sep 17 00:00:00 2001 From: Eric Lovett Date: Mon, 7 Nov 2011 11:37:05 -0800 Subject: [PATCH] docs: minor grammar fix in cluster page --- doc/api/cluster.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/cluster.markdown b/doc/api/cluster.markdown index b15a2c0601..7f1b19c69f 100644 --- a/doc/api/cluster.markdown +++ b/doc/api/cluster.markdown @@ -4,8 +4,8 @@ A single instance of Node runs in a single thread. To take advantage of multi-core systems the user will sometimes want to launch a cluster of Node processes to handle the load. -The cluster module allows you to easily create a network of processes all -which share server ports. +The cluster module allows you to easily create a network of processes that +all share server ports. var cluster = require('cluster'); var http = require('http');