Skip to content

Commit fe4e7bc

Browse files
authored
Fix typo in no-negation-in-equality-check's error
Closes #2483
1 parent 2b469be commit fe4e7bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rules/no-negation-in-equality-check.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const {
1212
const MESSAGE_ID_ERROR = 'no-negation-in-equality-check/error';
1313
const MESSAGE_ID_SUGGESTION = 'no-negation-in-equality-check/suggestion';
1414
const messages = {
15-
[MESSAGE_ID_ERROR]: 'Negated expression in not allowed in equality check.',
15+
[MESSAGE_ID_ERROR]: 'Negated expression is not allowed in equality check.',
1616
[MESSAGE_ID_SUGGESTION]: 'Switch to \'{{operator}}\' check.',
1717
};
1818

0 commit comments

Comments
 (0)