Skip to content

Commit ce68ab6

Browse files
committed
module: fix incorrect formatting in require(esm) cycle error message
Fixes: #57451
1 parent 5d9b63d commit ce68ab6

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
@@ -416,8 +416,8 @@ class ModuleLoader {
416416
if (parentFilename) {
417417
message += ` (from ${parentFilename})`;
418418
}
419-
message += 'A cycle involving require(esm) is disallowed to maintain ';
420-
message += 'invariants madated by the ECMAScript specification';
419+
message += ' A cycle involving require(esm) is not allowed to maintain ';
420+
message += 'invariants mandated by the ECMAScript specification. ';
421421
message += 'Try making at least part of the dependency in the graph lazily loaded.';
422422
throw new ERR_REQUIRE_CYCLE_MODULE(message);
423423

0 commit comments

Comments
 (0)