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
diff options
context:
space:
mode:
authorAkhil Marsonya <akhil.marsonya27@gmail.com>2021-03-30 09:00:23 +0300
committerRich Trott <rtrott@gmail.com>2021-04-05 07:12:32 +0300
commit2861778ecd7b342498cb4b0c5caa12e3324b5e58 (patch)
treef8431c45ff7da606485f0870de531aaf7c9c6ced /doc/api/domain.md
parent17a527ec07c69e063a2479a5a87df445a23e43ac (diff)
doc: change wording in doc/api/domain.md comment
Change the wording to make the language more Inclusive. PR-URL: https://github.com/nodejs/node/pull/38044 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'doc/api/domain.md')
-rw-r--r--doc/api/domain.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/domain.md b/doc/api/domain.md
index fac15518365..000878ea70d 100644
--- a/doc/api/domain.md
+++ b/doc/api/domain.md
@@ -69,7 +69,7 @@ const d = require('domain').create();
d.on('error', (er) => {
// The error won't crash the process, but what it does is worse!
// Though we've prevented abrupt process restarting, we are leaking
- // resources like crazy if this ever happens.
+ // a lot of resources if this ever happens.
// This is no better than process.on('uncaughtException')!
console.log(`error, but oh well ${er.message}`);
});