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
path: root/lib
diff options
context:
space:
mode:
authormarsonya <akhil.marsonya27@gmail.com>2021-03-16 20:37:18 +0300
committerMichaƫl Zasso <targos@protonmail.com>2021-05-01 13:25:24 +0300
commit13ac680cdb30db83443fd6ca77cd2f5a29a03c52 (patch)
tree3ac54ffbe275674354636f703cd31aa48436c868 /lib
parenta27534e88373defeb00cb24e4a29a2285a9f0eff (diff)
lib: fix typo in internal/modules/esm/module_job.js
PR-URL: https://github.com/nodejs/node/pull/37773 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com> Reviewed-By: Pooja D P <Pooja.D.P@ibm.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/internal/modules/esm/module_job.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/internal/modules/esm/module_job.js b/lib/internal/modules/esm/module_job.js
index 549d43cc20e..8eeecf1c369 100644
--- a/lib/internal/modules/esm/module_job.js
+++ b/lib/internal/modules/esm/module_job.js
@@ -118,7 +118,7 @@ class ModuleJob {
const importStatement = splitStack[1];
// TODO(@ctavan): The original error stack only provides the single
// line which causes the error. For multi-line import statements we
- // cannot generate an equivalent object descructuring assignment by
+ // cannot generate an equivalent object destructuring assignment by
// just parsing the error stack.
const oneLineNamedImports = StringPrototypeMatch(importStatement, /{.*}/);
const destructuringAssignment = oneLineNamedImports &&