From 5b07c2c85ed45ac327b88ad68c58a25d0356f427 Mon Sep 17 00:00:00 2001 From: Matt Jibson Date: Fri, 31 Jan 2014 16:37:56 -0500 Subject: [PATCH] Correct ICustomScope reference --- angularjs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/angularjs/README.md b/angularjs/README.md index 263e046ea1..510f304f55 100644 --- a/angularjs/README.md +++ b/angularjs/README.md @@ -95,7 +95,7 @@ interface ICustomScope extends ng.IScope { title: string; } -function Controller($scope: ng.ICustomScope) { +function Controller($scope: ICustomScope) { $scope.$broadcast('myEvent'); $scope.title = 'Yabadabadu'; }