Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorszTheory <szTheory@users.noreply.github.com>2020-05-02 16:45:54 +0300
committerAnna Henningsen <anna@addaleax.net>2020-05-08 02:24:52 +0300
commit4d4e3c3674b4f52ce9b59fecdf1f8d5f75112d59 (patch)
tree7a54a9cd17a914924b7ebc071bef81d8529118fc /lib/internal/bootstrap
parentd6913dc1f0ce8318b35b8a71e422f01993ad78c4 (diff)
lib: fix grammar in internal/bootstrap/loaders.js
PR-URL: https://github.com/nodejs/node/pull/33211 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Diffstat (limited to 'lib/internal/bootstrap')
-rw-r--r--lib/internal/bootstrap/node.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/internal/bootstrap/node.js b/lib/internal/bootstrap/node.js
index aa166cc931b..2c58f912080 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.