From 9d461e546e9be5bfdac16cb943da288f6f9c681a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandre=20Par=C3=A9?= Date: Tue, 4 Aug 2015 11:46:20 -0400 Subject: [PATCH] Invalid partition return type in chain Chain is an array of T. Partition should return _Chain. --- underscore/underscore.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/underscore/underscore.d.ts b/underscore/underscore.d.ts index 4842224c91..4aed7a855f 100644 --- a/underscore/underscore.d.ts +++ b/underscore/underscore.d.ts @@ -2833,7 +2833,7 @@ interface _Chain { * Wrapped type `any[]`. * @see _.partition **/ - partition(iterator: _.ListIterator, context?: any): _Chain; + partition(iterator: _.ListIterator, context?: any): _Chain; /** * Wrapped type `any[][]`.