doc: make example more clarified in cluster.md

PR-URL: https://github.com/nodejs/node/pull/23931
Refs: https://github.com/nodejs/node/issues/23930
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Yuta Hiroto <hello@hiroppy.me>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
This commit is contained in:
ZYSzys 2018-10-28 09:23:50 +08:00 committed by Kamat, Trivikram
parent f01518edfd
commit 2061843bc2

View File

@ -198,8 +198,8 @@ Within a worker, `process.on('message')` may also be used.
See [`process` event: `'message'`][]. See [`process` event: `'message'`][].
As an example, here is a cluster that keeps count of the number of requests Here is an example using the message system. It keeps a count in the master
in the master process using the message system: process of the number of HTTP requests received by the workers:
```js ```js
const cluster = require('cluster'); const cluster = require('cluster');