Little doc correction for _.endsWith(). (#2355)

This commit is contained in:
Arend van Beelen jr
2016-05-19 17:01:17 +02:00
committed by John-David Dalton
parent 56b397b506
commit ebf9b64062

View File

@@ -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