From 03fc317a3fdf2b698cb672bb3facad51cbe5066f Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 15 Jan 2015 22:50:08 -0800 Subject: [PATCH] Tweak `_.findLastKey` doc. [ci skip] --- lodash.src.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.src.js b/lodash.src.js index dcc331d84..75f1f20f3 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -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');