Skip to content

Commit 44c5718

Browse files
haykam821aduh95
authored andcommitted
module: fix incorrect formatting in require(esm) cycle error message
Fixes: #57451 PR-URL: #57453 Reviewed-By: Marco Ippolito <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Jake Yuesong Li <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 01cad99 commit 44c5718

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)