Tweak _.findLastKey doc. [ci skip]

This commit is contained in:
John-David Dalton
2015-01-15 22:50:08 -08:00
committed by jdalton
parent 00a8130201
commit 03fc317a3f

View File

@@ -8542,8 +8542,8 @@
* // => returns `pebbles` assuming `_.findKey` returns `barney`
*
* // using the "_.matches" callback shorthand
* _.findLastKey(users, { 'age': 40 });
* // => 'fred'
* _.findLastKey(users, { 'age': 36 });
* // => 'barney'
*
* // using the "_.property" callback shorthand
* _.findLastKey(users, 'active');