diff options
author | Anna Henningsen <anna@addaleax.net> | 2016-07-16 00:35:38 +0200 |
---|---|---|
committer | Anna Henningsen <anna@addaleax.net> | 2016-08-04 22:43:34 +0200 |
commit | c809b8834541bf63b1a43d5a12833d98ffba834f (patch) | |
tree | e5a3a79bdbecd5da9ebd4815166c45acce753b2b /doc/api/cluster.md | |
parent | 561958e56562f0eaf67fd05e099048d262ee7d14 (diff) | |
download | node-new-c809b8834541bf63b1a43d5a12833d98ffba834f.tar.gz |
doc: use blockquotes for Stability: markers
Use blockquotes instead of code blocks for stability markers in
the docs. Doing that:
- Makes the makers appear correctly when viewed e.g. on github.
- Allows remark-lint rules like `no-undefined-references` to work
properly (https://github.com/nodejs/node/pull/7729).
PR-URL: https://github.com/nodejs/node/pull/7757
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
Reviewed-By: Roman Reiss <me@silverwind.io>
Diffstat (limited to 'doc/api/cluster.md')
-rw-r--r-- | doc/api/cluster.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/cluster.md b/doc/api/cluster.md index 616be9b59a..a865ff4691 100644 --- a/doc/api/cluster.md +++ b/doc/api/cluster.md @@ -1,6 +1,6 @@ # Cluster - Stability: 2 - Stable +> Stability: 2 - Stable A single instance of Node.js runs in a single thread. To take advantage of multi-core systems the user will sometimes want to launch a cluster of Node.js @@ -395,7 +395,7 @@ if (cluster.isMaster) { ### worker.suicide - Stability: 0 - Deprecated: Use [`worker.exitedAfterDisconnect`][] instead. +> Stability: 0 - Deprecated: Use [`worker.exitedAfterDisconnect`][] instead. An alias to [`worker.exitedAfterDisconnect`][]. |