From 678321bb2fd20c087a27bf12592a71879eee0af8 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 9 Sep 2014 23:33:05 -0700 Subject: [PATCH] Make `_.unescape` doc example align with `_.escape`. [ci skip] --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index e4cbf1e5b..b49de1fbf 100644 --- a/lodash.js +++ b/lodash.js @@ -8745,8 +8745,8 @@ * @returns {string} Returns the unescaped string. * @example * - * _.unescape('fred, barney & pebbles'); - * // => 'fred, barney & pebbles' + * _.unescape('fred, barney, & pebbles'); + * // => 'fred, barney, & pebbles' */ function unescape(string) { string = string == null ? '' : String(string);