From d9ca60657ac4dee1f884676319ee83a2b78526f5 Mon Sep 17 00:00:00 2001 From: YutamaKotaro Date: Sat, 12 Nov 2016 16:36:06 +0900 Subject: [PATCH] doc: fix typo about cluster doc, (eg. -> e.g.) Fixes: https://github.com/nodejs/code-and-learn/issues/58 PR-URL: https://github.com/nodejs/node/pull/9568 Reviewed-By: Roman Reiss Reviewed-By: Colin Ihrig Reviewed-By: Luigi Pinca Reviewed-By: Shigeki Ohtsu --- doc/api/cluster.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/cluster.md b/doc/api/cluster.md index 0c34aae6b76939..55837cbf87b66a 100644 --- a/doc/api/cluster.md +++ b/doc/api/cluster.md @@ -144,7 +144,7 @@ added: v0.11.2 --> * `code` {Number} the exit code, if it exited normally. -* `signal` {String} the name of the signal (eg. `'SIGHUP'`) that caused +* `signal` {String} the name of the signal (e.g. `'SIGHUP'`) that caused the process to be killed. Similar to the `cluster.on('exit')` event, but specific to this worker. @@ -466,7 +466,7 @@ added: v0.7.9 * `worker` {cluster.Worker} * `code` {Number} the exit code, if it exited normally. -* `signal` {String} the name of the signal (eg. `'SIGHUP'`) that caused +* `signal` {String} the name of the signal (e.g. `'SIGHUP'`) that caused the process to be killed. When any of the workers die the cluster module will emit the `'exit'` event.