From bc63597ea3c636ed5f842dbfbc274b6c5a997e34 Mon Sep 17 00:00:00 2001 From: Derek Cicerone Date: Wed, 21 Aug 2013 17:08:45 -0400 Subject: [PATCH] Fix breaks identified by TypeScript 0.9.1.1 --- underscore/underscore.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/underscore/underscore.d.ts b/underscore/underscore.d.ts index 7c92ca0073..499b390a33 100644 --- a/underscore/underscore.d.ts +++ b/underscore/underscore.d.ts @@ -1310,7 +1310,7 @@ declare module _ { * @param obj Object to chain. * @return Wrapped `obj`. **/ - export function chain(obj: any): _Chain; + export function chain(obj: any): _Chain; /** * Extracts the value of a wrapped object. @@ -2077,7 +2077,7 @@ declare class _ { * Wrapped type `any`. * @see _.chain **/ - chain(): _Chain; + chain(): _Chain; /** * Wrapped type `any`. @@ -2096,7 +2096,7 @@ interface _Chain { * Wrapped type `any[]`. * @see _.each **/ - each(iterator: _.ListIterator, context?: any): _Chain; + each(iterator: _.ListIterator, context?: any): _Chain; /** * @see _.each