doc: fix typos in cluster & errors
authorreggi <thomas@reggi.com>
Tue, 22 Sep 2015 20:48:53 +0000 (16:48 -0400)
committerJeremiah Senkpiel <fishrock123@rocketmail.com>
Fri, 25 Sep 2015 05:09:44 +0000 (22:09 -0700)
PR-URL: https://github.com/nodejs/node/pull/3011
Reviewed-By: Michaƫl Zasso <mic.besace@gmail.com>
Reviewed-By: Roman Reiss <me@silverwind.io>
doc/api/cluster.markdown
doc/api/errors.markdown

index c46a2cc..f2f388c 100644 (file)
@@ -563,7 +563,7 @@ in the master process using the message system:
         console.log("numReqs =", numReqs);
       }, 1000);
 
-      // Count requestes
+      // Count requests
       function messageHandler(msg) {
         if (msg.cmd && msg.cmd == 'notifyRequest') {
           numReqs += 1;
index 04d3d97..505241f 100644 (file)
@@ -308,7 +308,7 @@ An operation expected a file, but the given pathname was a directory.
 
 #### EMFILE: Too many open files in system
 
-Maxiumum number of [file descriptors](http://en.wikipedia.org/wiki/File_descriptor) allowable on the system has
+Maximum number of [file descriptors](http://en.wikipedia.org/wiki/File_descriptor) allowable on the system has
 been reached, and requests for another descriptor cannot be fulfilled until
 at least one has been closed.