From 5d3320388565b0b3f9b1969387acdf2c7c853458 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Thu, 19 Oct 2023 13:06:49 +0200 Subject: [PATCH] doc: fix hardwareConcurrency example --- 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 0ca27111db49e1..17d72c41417518 100644 --- a/doc/api/globals.md +++ b/doc/api/globals.md @@ -626,7 +626,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`); ``` ## `PerformanceEntry`