From 21e399be4c0bb23b407f3d0f19cef272a76bbd89 Mon Sep 17 00:00:00 2001 From: Akhil Marsonya Date: Thu, 25 Mar 2021 08:52:19 +0530 Subject: [PATCH] lib: change wording in lib/internal/child_process comment Change the wording to make the language more Inclusive. PR-URL: https://github.com/nodejs/node/pull/37903 Reviewed-By: Rich Trott Reviewed-By: Pooja D P Reviewed-By: Anna Henningsen Reviewed-By: Colin Ihrig Reviewed-By: Darshan Sen Reviewed-By: James M Snell --- lib/internal/child_process.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/internal/child_process.js b/lib/internal/child_process.js index 8a57c40d76f823..c9f810b1500e2b 100644 --- a/lib/internal/child_process.js +++ b/lib/internal/child_process.js @@ -739,7 +739,7 @@ function setupChannel(target, channel, serializationMode) { // Non-serializable messages should not reach the remote // end point; as any failure in the stringification there // will result in error message that is weakly consumable. - // So perform a sanity check on message prior to sending. + // So perform a final check on message prior to sending. if (typeof message !== 'string' && typeof message !== 'object' && typeof message !== 'number' &&