diff --git a/lodash.src.js b/lodash.src.js index 80a6cc5bc..ca9da0795 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -4588,7 +4588,7 @@ * // => 2 * * // using the `_.matches` callback shorthand - * _.findLastIndex(users, { user': 'barney', 'active': true }); + * _.findLastIndex(users, { 'user': 'barney', 'active': true }); * // => 0 * * // using the `_.matchesProperty` callback shorthand @@ -6840,7 +6840,7 @@ * ]; * * // using the `_.matches` callback shorthand - * _.some(users, { user': 'barney', 'active': false }); + * _.some(users, { 'user': 'barney', 'active': false }); * // => false * * // using the `_.matchesProperty` callback shorthand