Skip to content

Commit 785c283

Browse files
committed
Update CaseSensitiveModulesWarning.js
I believe this should be "an equal" instead of "a equal"
1 parent 764c139 commit 785c283

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/CaseSensitiveModulesWarning.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ function CaseSensitiveModulesWarning(module) {
66
Error.call(this);
77
Error.captureStackTrace(this, CaseSensitiveModulesWarning);
88
this.name = "CaseSensitiveModulesWarning";
9-
this.message = "There is another module with a equal name when case is ignored.\n" +
9+
this.message = "There is another module with an equal name when case is ignored.\n" +
1010
"This can lead to unexpected behavior when compiling on a filesystem with other case-semantic.\n" +
1111
"Rename module if multiple modules are expected or use equal casing if one module is expected.";
1212
this.origin = this.module = module;

0 commit comments

Comments
 (0)