diff --git a/src/node.cc b/src/node.cc index 5a6998e93ce1fb..9c1467f802278f 100644 --- a/src/node.cc +++ b/src/node.cc @@ -3418,11 +3418,11 @@ void LoadEnvironment(Environment* env) { global->Set(FIXED_ONE_BYTE_STRING(env->isolate(), "global"), global); // Now we call 'f' with the 'process' variable that we've built up with - // all our bindings. Inside bootstrap_node.js we'll take care of - // assigning things to their places. + // all our bindings. Inside bootstrap_node.js and internal/process we'll + // take care of assigning things to their places. // We start the process this way in order to be more modular. Developers - // who do not like how bootstrap_node.js setups the module system but do + // who do not like how bootstrap_node.js sets up the module system but do // like Node's I/O bindings may want to replace 'f' with their own function. Local arg = env->process_object(); f->Call(Null(env->isolate()), 1, &arg);