From 584da3c39b9e4c3c76419f154171f0674e375881 Mon Sep 17 00:00:00 2001 From: h7lin Date: Fri, 27 Feb 2015 18:04:14 +0800 Subject: [PATCH] Fix doc example in `_.findLastIndex`. [ci skip] --- lodash.src.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.src.js b/lodash.src.js index d964c8336..a32c147ca 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -4596,7 +4596,7 @@ * * // using the `_.matchesProperty` callback shorthand * _.findLastIndex(users, 'active', false); - * // => 1 + * // => 2 * * // using the `_.property` callback shorthand * _.findLastIndex(users, 'active');