Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAtsuya Takagi <atsuya.takagi@gmail.com>2012-09-03 14:09:50 +0400
committerBen Noordhuis <info@bnoordhuis.nl>2012-09-04 02:41:40 +0400
commit9f57e422cf15fbd1abdaa7795d373058ea9ee133 (patch)
treec124658044ee814aa6e1183dd1ae35efb6987288 /doc
parent7dfa587d18c9d55cf2625c138250ef02c464d911 (diff)
doc: fix typo in api/cluster
Diffstat (limited to 'doc')
-rw-r--r--doc/api/cluster.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/cluster.markdown b/doc/api/cluster.markdown
index fa96d488d6b..aa59acbf48a 100644
--- a/doc/api/cluster.markdown
+++ b/doc/api/cluster.markdown
@@ -357,7 +357,7 @@ the worker finally die.
Because there might be long living connections, it is useful to implement a timeout.
This example ask the worker to disconnect and after 2 seconds it will destroy the
-server. An alternative wound be to execute `worker.destroy()` after 2 seconds, but
+server. An alternative would be to execute `worker.destroy()` after 2 seconds, but
that would normally not allow the worker to do any cleanup if needed.
if (cluster.isMaster) {