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 <rtrott@gmail.com>
Reviewed-By: Pooja D P <Pooja.D.P@ibm.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
Akhil Marsonya 2021-03-25 08:52:19 +05:30 committed by James M Snell
parent dbab2893ef
commit 08f051fc92
No known key found for this signature in database
GPG Key ID: 7341B15C070877AC

View File

@ -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' &&