Skip to content

Commit

Permalink
grammar fix
Browse files Browse the repository at this point in the history
  • Loading branch information
waldyrious committed Oct 6, 2014
1 parent cc28547 commit 52c9ab1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/rules/style-disabled.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
*/
HTMLHint.addRule({
id: 'style-disabled',
description: 'Style tag can not be use.',
description: 'Style tag can not be used.',
init: function(parser, reporter){
var self = this;
parser.addListener('tagstart', function(event){
if(event.tagName.toLowerCase() === 'style'){
reporter.warn('Style tag can not be use.', event.line, event.col, self, event.raw);
reporter.warn('Style tag can not be used.', event.line, event.col, self, event.raw);
}
});
}
});
});

0 comments on commit 52c9ab1

Please sign in to comment.