From a366e84b171ff99d5e3ba4eded299cf1df7e5dba Mon Sep 17 00:00:00 2001 From: reggi Date: Tue, 22 Sep 2015 16:48:53 -0400 Subject: [PATCH] doc: fix typos in cluster & errors MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/3011 Reviewed-By: Michaël Zasso Reviewed-By: Roman Reiss --- doc/api/cluster.markdown | 2 +- doc/api/errors.markdown | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/cluster.markdown b/doc/api/cluster.markdown index c46a2cc..f2f388c 100644 --- a/doc/api/cluster.markdown +++ b/doc/api/cluster.markdown @@ -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; diff --git a/doc/api/errors.markdown b/doc/api/errors.markdown index 04d3d97..505241f 100644 --- a/doc/api/errors.markdown +++ b/doc/api/errors.markdown @@ -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. -- 2.7.4