From 5d2f0d0c4e039a050f3b65fd421aab2666fa4fc1 Mon Sep 17 00:00:00 2001 From: Akhil Marsonya Date: Tue, 30 Mar 2021 11:30:23 +0530 Subject: [PATCH] doc: change wording in doc/api/domain.md comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change the wording to make the language more Inclusive. PR-URL: https://github.com/nodejs/node/pull/38044 Reviewed-By: Antoine du Hamel Reviewed-By: Colin Ihrig Reviewed-By: Darshan Sen Reviewed-By: Juan José Arboleda Reviewed-By: Rich Trott --- doc/api/domain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/domain.md b/doc/api/domain.md index c7aabd489bd27c..5ce428fc882370 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}`); });