Fixes missing single quotes in docs. [ci skip]

This commit is contained in:
Jarrett Meyer
2015-02-20 17:53:51 -05:00
committed by jdalton
parent d942189bc6
commit 0e7bef9014

View File

@@ -4588,7 +4588,7 @@
* // => 2 * // => 2
* *
* // using the `_.matches` callback shorthand * // using the `_.matches` callback shorthand
* _.findLastIndex(users, { user': 'barney', 'active': true }); * _.findLastIndex(users, { 'user': 'barney', 'active': true });
* // => 0 * // => 0
* *
* // using the `_.matchesProperty` callback shorthand * // using the `_.matchesProperty` callback shorthand
@@ -6840,7 +6840,7 @@
* ]; * ];
* *
* // using the `_.matches` callback shorthand * // using the `_.matches` callback shorthand
* _.some(users, { user': 'barney', 'active': false }); * _.some(users, { 'user': 'barney', 'active': false });
* // => false * // => false
* *
* // using the `_.matchesProperty` callback shorthand * // using the `_.matchesProperty` callback shorthand