From 7de69a21c57f178363fdbbee09d92a46a690e18a Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 27 Aug 2012 02:54:55 -0700 Subject: [PATCH] Cleanup unescape comments. Former-commit-id: 4c0a66d28ed8b04748e4d97755983ec328e53ca4 --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index 0356e7ffc..513035a68 100644 --- a/lodash.js +++ b/lodash.js @@ -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 `'` + * Converts the HTML entities `&`, `<`, `>`, `"`, and `'` * in `string` to their corresponding characters. * * @static