From 17183d399c5343e49e86ad49c0a0f726f530e048 Mon Sep 17 00:00:00 2001 From: Job Date: Wed, 19 Jan 2022 14:44:43 +0100 Subject: [PATCH] doc: fix cjs example code for process.arch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/41593 Reviewed-By: Mestery Reviewed-By: Colin Ihrig Reviewed-By: Qingyu Deng Reviewed-By: Mohammed Keyvanzadeh Reviewed-By: Richard Lau Reviewed-By: Tobias Nießen --- doc/api/process.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/process.md b/doc/api/process.md index 766ddb4571ebe8..2009e231d5ee9e 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -873,7 +873,7 @@ console.log(`This processor architecture is ${arch}`); ```cjs const { arch } = require('process'); -console.log(`This processor architecture is ${process.arch}`); +console.log(`This processor architecture is ${arch}`); ``` ## `process.argv`