From 0c1c4b08c717decbdf992733b38115d9cfb73e27 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 23 May 2014 17:26:20 -0700 Subject: [PATCH] Fix doc typo. [ci skip] --- lodash.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lodash.js b/lodash.js index ef5c6d983..a2547a287 100644 --- a/lodash.js +++ b/lodash.js @@ -153,13 +153,13 @@ * Used to convert characters to HTML entities. * * Note: Though the ">" character is escaped for symmetry, characters like - * ">", "`", and "/" don't require escaping in HTML and have no special meaning + * ">" and "/" don't require escaping in HTML and have no special meaning * unless they're part of a tag or unquoted attribute value. * See [Mathias' article](http://mathiasbynens.be/notes/ambiguous-ampersands) * (under "semi-related fun fact") for more details. * - * Backticks are escaped because in Internet Explorer <= 8, they can be used - * to break out of unquoted attribute values or HTML comments. See + * Backticks are escaped because in Internet Explorer < 9, they can be used + * to break out of attribute values or HTML comments. See * , , and * for more details. */