summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Nießen <tniessen@tnie.de>2022-01-21 12:13:37 +0100
committerGitHub <noreply@github.com>2022-01-21 11:13:37 +0000
commit74867f713a704fe422473e3bba0dae9bc09907e2 (patch)
tree955c919963962957cbcbc6ddf2586dda871e607c
parent271725a36359003b9a26ad8522688c3a319a750d (diff)
downloadnode-new-74867f713a704fe422473e3bba0dae9bc09907e2.tar.gz
doc: add missing word in cluster.workers details
PR-URL: https://github.com/nodejs/node/pull/41624 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
-rw-r--r--doc/api/cluster.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/cluster.md b/doc/api/cluster.md
index d96371d529..d34b1bb795 100644
--- a/doc/api/cluster.md
+++ b/doc/api/cluster.md
@@ -1068,7 +1068,7 @@ process.
A worker is removed from `cluster.workers` after the worker has disconnected
_and_ exited. The order between these two events cannot be determined in
advance. However, it is guaranteed that the removal from the `cluster.workers`
-list happens before last `'disconnect'` or `'exit'` event is emitted.
+list happens before the last `'disconnect'` or `'exit'` event is emitted.
```mjs
import cluster from 'cluster';