Browse Source

doc: fix typo in cluster example code

v0.8.8-release
Ron Korving 13 years ago
committed by Ben Noordhuis
parent
commit
2e1f2b535e
  1. 2
      doc/api/cluster.markdown

2
doc/api/cluster.markdown

@ -361,7 +361,7 @@ server. An alternative wound be to execute `worker.destroy()` after 2 seconds, b
that would normally not allow the worker to do any cleanup if needed.
if (cluster.isMaster) {
var worker = cluser.fork();
var worker = cluster.fork();
var timeout;
worker.on('listening', function(address) {

Loading…
Cancel
Save