From 73c48292550f9b6e290e71bb4334f5accb7de002 Mon Sep 17 00:00:00 2001 From: Mohsen Azimi Date: Fri, 27 Feb 2015 10:06:42 -0800 Subject: [PATCH] Escape the backtick in `_.escape` docs. [ci skip] --- doc/README.md | 2 +- lodash.src.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/README.md b/doc/README.md index 2c1ad3b95..2cff32f3f 100644 --- a/doc/README.md +++ b/doc/README.md @@ -5999,7 +5999,7 @@ _.endsWith('abc', 'b', 2); ### `_.escape([string=''])` # [Ⓢ](https://github.com/lodash/lodash/blob/3.3.1/lodash.src.js#L9925 "View in source") [Ⓣ][1] [Ⓝ](https://www.npmjs.com/package/lodash.escape "See the npm package") -Converts the characters "&", "<", ">", '"', "'", and '`', in `string` to +Converts the characters "&", "<", ">", '"', "'", and "\`", in `string` to their corresponding HTML entities.

diff --git a/lodash.src.js b/lodash.src.js index 5dd22deb6..d964c8336 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -9793,7 +9793,7 @@ } /** - * Converts the characters "&", "<", ">", '"', "'", and '`', in `string` to + * Converts the characters "&", "<", ">", '"', "'", and "\`", in `string` to * their corresponding HTML entities. * * **Note:** No other characters are escaped. To escape additional characters