From 7ec916b777c1bb13b295c38dba0e84f7cf16a40b Mon Sep 17 00:00:00 2001 From: jdalton Date: Wed, 8 Apr 2015 08:24:44 -0700 Subject: [PATCH] Add additional backtick reference to `_.escape` docs. [ci skip] --- lodash.src.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lodash.src.js b/lodash.src.js index 1c03affce..6cb3062c1 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -10316,9 +10316,10 @@ * (under "semi-related fun fact") for more details. * * Backticks are escaped because in Internet Explorer < 9, they can break out - * of attribute values or HTML comments. See [#102](https://html5sec.org/#102), - * [#108](https://html5sec.org/#108), and [#133](https://html5sec.org/#133) of - * the [HTML5 Security Cheatsheet](https://html5sec.org/) for more details. + * of attribute values or HTML comments. See [#59](https://html5sec.org/#59), + * [#102](https://html5sec.org/#102), [#108](https://html5sec.org/#108), and + * [#133](https://html5sec.org/#133) of the [HTML5 Security Cheatsheet](https://html5sec.org/) + * for more details. * * When working with HTML you should always [quote attribute values](http://wonko.com/post/html-escaping) * to reduce XSS vectors.