diff options
author | Ruben Bridgewater <ruben@bridgewater.de> | 2019-03-07 01:03:53 +0100 |
---|---|---|
committer | Ruben Bridgewater <ruben@bridgewater.de> | 2019-03-14 11:02:41 +0100 |
commit | 52a0d76f3284f4d873598d95b683153e3c233f57 (patch) | |
tree | 4e78bd58481299a416c07a06932af317001acddb /doc/api/cluster.md | |
parent | 124203758f2f33a2d9f367360ab13def8be2eb59 (diff) | |
download | node-new-52a0d76f3284f4d873598d95b683153e3c233f57.tar.gz |
benchmark,doc,lib,test: capitalize comments
PR-URL: https://github.com/nodejs/node/pull/26483
Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Reviewed-By: Michaƫl Zasso <targos@protonmail.com>
Diffstat (limited to 'doc/api/cluster.md')
-rw-r--r-- | doc/api/cluster.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/cluster.md b/doc/api/cluster.md index 879f4af793..90e64239b3 100644 --- a/doc/api/cluster.md +++ b/doc/api/cluster.md @@ -237,7 +237,7 @@ if (cluster.isMaster) { res.writeHead(200); res.end('hello world\n'); - // notify master about the request + // Notify master about the request process.send({ cmd: 'notifyRequest' }); }).listen(8000); } |