From 52b68b9e9c434c51c78ee27066a5c473b112ba3f Mon Sep 17 00:00:00 2001 From: Manuel Rueda Date: Sun, 10 Jan 2016 19:46:46 -0300 Subject: [PATCH] fix typo --- promise/promise.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/promise/promise.d.ts b/promise/promise.d.ts index 387a01397..9237b8908 100644 --- a/promise/promise.d.ts +++ b/promise/promise.d.ts @@ -26,6 +26,6 @@ declare module Promise { then(onFulfilled?: (value: T) => IThenable|R, onRejected?: (error: any) => IThenable|R): IThenable; catch(onRejected?: (error: any) => IThenable|R): IThenable; done(onFulfilled?: (value: T) => IThenable|R, onRejected?: (error: any) => IThenable|R): IThenable; - nodeify(callbacl: Function): IThenable; + nodeify(callback: Function): IThenable; } }