From 25dd3de39c4f6f508cf775836707df8f3c920859 Mon Sep 17 00:00:00 2001 From: Tomasz Ducin Date: Fri, 31 Jul 2015 09:49:57 +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 b6aaf99cf..1632ff1e7 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); + notifications.info("Something happened", "here is the content of what happened", userData); } ]);