Skip to content

Commit

Permalink
Added missing semicolon after entity name
Browse files Browse the repository at this point in the history
  • Loading branch information
fgnass committed Mar 11, 2011
1 parent f39becd commit cd3ae75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/jsdom/browser/htmlencoding.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ specialCharEntities = {
'&': '&',
'"': '"',
'<': '&lt;',
'>': '&gt'
'>': '&gt;'
};

var entityRegExp = /&([#a-z0-9]+);/gi;
Expand Down

0 comments on commit cd3ae75

Please sign in to comment.