Fixed a type on the IHttpBackendService interface: there was a ; instead of a :

This commit is contained in:
Diego Vilar
2012-11-21 03:01:26 -03:00
parent 75ab960d8b
commit 306dd2f52f
+2 -2
View File
@@ -518,7 +518,7 @@ module ng {
///////////////////////////////////////////////////////////////////////////
interface IHttpBackendService {
// XXX Perhaps define callback signature in the future
(method: string, url: string, post?: any, callback?: Function, headers?: any, timeout?: number, withCredentials?: bool); void;
(method: string, url: string, post?: any, callback?: Function, headers?: any, timeout?: number, withCredentials?: bool): void;
}
///////////////////////////////////////////////////////////////////////////
@@ -635,4 +635,4 @@ module ng {
}
}
}