From 9017bce54bca4f238d8082f557dbb46d84579423 Mon Sep 17 00:00:00 2001 From: szTheory Date: Sat, 2 May 2020 13:45:54 +0000 Subject: [PATCH] lib: fix grammar in internal/bootstrap/loaders.js PR-URL: https://github.com/nodejs/node/pull/33211 Reviewed-By: Colin Ihrig Reviewed-By: Ruben Bridgewater Reviewed-By: Trivikram Kamat --- lib/internal/bootstrap/node.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/internal/bootstrap/node.js b/lib/internal/bootstrap/node.js index bb9a2b177c4304..789492ca6ed617 100644 --- a/lib/internal/bootstrap/node.js +++ b/lib/internal/bootstrap/node.js @@ -7,7 +7,7 @@ // This file is expected not to perform any asynchronous operations itself // when being executed - those should be done in either // `lib/internal/bootstrap/pre_execution.js` or in main scripts. The majority -// of the code here focus on setting up the global proxy and the process +// of the code here focuses on setting up the global proxy and the process // object in a synchronous manner. // As special caution is given to the performance of the startup process, // many dependencies are invoked lazily.