Cleanup unescape comments.

Former-commit-id: 4c0a66d28ed8b04748e4d97755983ec328e53ca4
This commit is contained in:
John-David Dalton
2012-08-27 02:54:55 -07:00
parent 21783e4ea0
commit 7de69a21c5

View File

@@ -255,7 +255,7 @@
* Used to convert HTML entities to characters:
*
* Numeric character references are case-insensitive.
* http://www.w3.org/TR/html4/charset.html#h-5.3.1
* http://whatwg.org/html/syntax.html#character-references
*/
var htmlUnescapes = {
'&': '&',
@@ -4037,7 +4037,7 @@
}
/**
* Converts the HTML entities `&`, `<`, `>`, `"`, and `&#x27`
* Converts the HTML entities `&`, `<`, `>`, `"`, and `'`
* in `string` to their corresponding characters.
*
* @static