From a315ac7f88d1dc754a21cf5511818216cbae67a5 Mon Sep 17 00:00:00 2001 From: Tomasz Ducin Date: Fri, 31 Jul 2015 09:47:12 +0200 Subject: [PATCH] typo fix --- angular-notifications/angular-notifications-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/angular-notifications/angular-notifications-tests.ts b/angular-notifications/angular-notifications-tests.ts index f71a2e689..b6aaf99cf 100644 --- a/angular-notifications/angular-notifications-tests.ts +++ b/angular-notifications/angular-notifications-tests.ts @@ -6,7 +6,7 @@ myapp.controller("MyController", ["$scope", "notifications", function ($scope:ng.IScope, notifications:angular.notifications.INotificationFactory) { // <-- Inject notifications var userData = {'some': 'data', 'optional': true}; - $notification.info("Something happened", "here is the content of what happened", userData); + notification.info("Something happened", "here is the content of what happened", userData); } ]);