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; } }