mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-08 02:17:48 +00:00
Fixes missing single quotes in docs. [ci skip]
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user