Skip to content

Commit

Permalink
change rule message
Browse files Browse the repository at this point in the history
  • Loading branch information
yaniswang committed Feb 27, 2013
1 parent b9eae3e commit 5a39a2b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/htmlhint.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/rules/spec-char-escape.js
Expand Up @@ -10,7 +10,7 @@ HTMLHint.addRule({
parser.addListener('text', function(event){
var match = event.raw.match(/[<>]/);
if(match !== null){
reporter.error('Special characters must be escaped [ '+match[0]+' ].', event.line, event.col + match.index, self, event.raw);
reporter.error('Special characters must be escaped : [ '+match[0]+' ].', event.line, event.col + match.index, self, event.raw);
}
});
}
Expand Down

0 comments on commit 5a39a2b

Please sign in to comment.