summaryrefslogtreecommitdiff
path: root/tools/eslint/lib/rules/no-warning-comments.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/eslint/lib/rules/no-warning-comments.js')
-rw-r--r--tools/eslint/lib/rules/no-warning-comments.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/eslint/lib/rules/no-warning-comments.js b/tools/eslint/lib/rules/no-warning-comments.js
index 65768fe74f..881c5646f2 100644
--- a/tools/eslint/lib/rules/no-warning-comments.js
+++ b/tools/eslint/lib/rules/no-warning-comments.js
@@ -79,7 +79,7 @@ module.exports = function(context) {
var matches = commentContainsWarningTerm(node.value);
matches.forEach(function(matchedTerm) {
- context.report(node, "Unexpected \"" + matchedTerm + "\" comment.");
+ context.report(node, "Unexpected '" + matchedTerm + "' comment.");
});
}