From fae85031563b2c65173571553ca824052218e9a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Mon, 23 Oct 2023 18:52:41 +0200 Subject: [PATCH] doc: fix `navigator.hardwareConcurrency` example MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/50278 Refs: https://github.com/nodejs/node/pull/47769 Reviewed-By: Michaël Zasso Reviewed-By: Richard Lau Reviewed-By: Vinícius Lourenço Claro Cardoso Reviewed-By: Yagiz Nizipli Reviewed-By: Luigi Pinca --- doc/api/globals.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/globals.md b/doc/api/globals.md index 2a598baa81ffa5c..91eb267945be118 100644 --- a/doc/api/globals.md +++ b/doc/api/globals.md @@ -634,7 +634,7 @@ The `navigator.hardwareConcurrency` read-only property returns the number of logical processors available to the current Node.js instance. ```js -console.log(`This process is running on ${navigator.hardwareConcurrency}`); +console.log(`This process is running on ${navigator.hardwareConcurrency} logical processors`); ``` ### `navigator.userAgent`