From 540afb193b26d2248991f04a6e9e977baf95a4ad Mon Sep 17 00:00:00 2001 From: Austin Pray Date: Sun, 15 Feb 2015 13:30:22 -0600 Subject: [PATCH] Fix type in _.some doc example. [closes #969] [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 40ab9b793..7fb5e4c0e 100644 --- a/lodash.js +++ b/lodash.js @@ -6562,7 +6562,7 @@ * ]; * * // using the `_.matches` callback shorthand - * _.some(users, { user': 'barney', 'active': false }); + * _.some(users, { 'user': 'barney', 'active': false }); * // => false * * // using the `_.matchesProperty` callback shorthand