From ebf9b64062c228e30c0778854b8b4f280cf62740 Mon Sep 17 00:00:00 2001 From: Arend van Beelen jr Date: Thu, 19 May 2016 17:01:17 +0200 Subject: [PATCH] Little doc correction for _.endsWith(). (#2355) --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index d4799cdd3..3591d56ba 100644 --- a/lodash.js +++ b/lodash.js @@ -13505,7 +13505,7 @@ * @category String * @param {string} [string=''] The string to search. * @param {string} [target] The string to search for. - * @param {number} [position=string.length] The position to search from. + * @param {number} [position=string.length] The position to search up to. * @returns {boolean} Returns `true` if `string` ends with `target`, * else `false`. * @example