Browse Source

docs: minor grammar fix in cluster page

v0.7.4-release
Eric Lovett 14 years ago
committed by Ben Noordhuis
parent
commit
69d3bf1068
  1. 4
      doc/api/cluster.markdown

4
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 multi-core systems the user will sometimes want to launch a cluster of Node
processes to handle the load. processes to handle the load.
The cluster module allows you to easily create a network of processes all The cluster module allows you to easily create a network of processes that
which share server ports. all share server ports.
var cluster = require('cluster'); var cluster = require('cluster');
var http = require('http'); var http = require('http');

Loading…
Cancel
Save