Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2022-04-01 06:14:44 +0300
committerRich Trott <rtrott@gmail.com>2022-04-03 09:12:54 +0300
commitb07dc4d19fdbc15b4f76557dc45b3ce3a43ad0c3 (patch)
tree0ff748f8100e69c47a21bebd9dd165e3fbd206d3 /doc
parent561885152e2bc894bd55184a950174a88486d286 (diff)
doc: simplify recommendations in process.md
Remove recommendation that has no explanation. Make the other recommendation less wordy. PR-URL: https://github.com/nodejs/node/pull/42556 Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/process.md6
1 files changed, 2 insertions, 4 deletions
diff --git a/doc/api/process.md b/doc/api/process.md
index fe5dc483493..d2416e1f31b 100644
--- a/doc/api/process.md
+++ b/doc/api/process.md
@@ -7,8 +7,7 @@
<!-- source_link=lib/process.js -->
The `process` object provides information about, and control over, the current
-Node.js process. While it is available as a global, it is recommended to
-explicitly access it via require or import:
+Node.js process.
```mjs
import process from 'process';
@@ -1487,8 +1486,7 @@ The following additional handling is implemented if the warning `type` is
### Avoiding duplicate warnings
As a best practice, warnings should be emitted only once per process. To do
-so, it is recommended to place the `emitWarning()` behind a simple boolean
-flag as illustrated in the example below:
+so, place the `emitWarning()` behind a boolean.
```mjs
import { emitWarning } from 'process';