From 0d6bae6a56dacfb95d60c5e509a9e9312681e982 Mon Sep 17 00:00:00 2001 From: Tim Perry Date: Wed, 12 Aug 2015 10:27:39 +0100 Subject: [PATCH] Remove unnecessary extra generic parameter in Lodash's _().where --- lodash/lodash.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash/lodash.d.ts b/lodash/lodash.d.ts index 7c4111746..80ad0b79c 100644 --- a/lodash/lodash.d.ts +++ b/lodash/lodash.d.ts @@ -5153,7 +5153,7 @@ declare module _ { /** * @see _.where **/ - where(properties: U): LoDashArrayWrapper; + where(properties: U): LoDashArrayWrapper; } /********