From 75357ab8101c32379e2a59f396161a66688c6d26 Mon Sep 17 00:00:00 2001 From: jraymakers Date: Tue, 7 Jan 2014 22:22:33 -0800 Subject: [PATCH] add missing semicolon in ICloneAttachFunction --- angularjs/angular.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/angularjs/angular.d.ts b/angularjs/angular.d.ts index ec5b48964..3af21d4a3 100755 --- a/angularjs/angular.d.ts +++ b/angularjs/angular.d.ts @@ -539,7 +539,7 @@ declare module ng { interface ICloneAttachFunction { // Let's hint but not force cloneAttachFn's signature - (clonedElement?: JQuery, scope?: IScope): any + (clonedElement?: JQuery, scope?: IScope): any; } interface ITemplateLinkingFunction {