Skip to content

Commit d0d0e31

Browse files
haykam821aduh95
authored andcommitted
module: fix incorrect formatting in require(esm) cycle error message
Fixes: #57451 PR-URL: #57453 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent 972d3ba commit d0d0e31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/internal/modules/esm/loader.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -408,8 +408,8 @@ class ModuleLoader {
408408
if (parentFilename) {
409409
message += ` (from ${parentFilename})`;
410410
}
411-
message += 'A cycle involving require(esm) is disallowed to maintain ';
412-
message += 'invariants madated by the ECMAScript specification';
411+
message += ' A cycle involving require(esm) is not allowed to maintain ';
412+
message += 'invariants mandated by the ECMAScript specification. ';
413413
message += 'Try making at least part of the dependency in the graph lazily loaded.';
414414
throw new ERR_REQUIRE_CYCLE_MODULE(message);
415415

0 commit comments

Comments
 (0)