From efc6bfe2ec4d7d55236001c44d3858b4b91a9edf Mon Sep 17 00:00:00 2001 From: Tomasz Ducin Date: Fri, 31 Jul 2015 09:40:07 +0200 Subject: [PATCH] typo fix --- angular-notifications/angular-notifications-tests.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/angular-notifications/angular-notifications-tests.ts b/angular-notifications/angular-notifications-tests.ts index bbfc3e90e..f71a2e689 100644 --- a/angular-notifications/angular-notifications-tests.ts +++ b/angular-notifications/angular-notifications-tests.ts @@ -3,10 +3,10 @@ var myapp = angular.module("myapp", ["notifications"]); myapp.controller("MyController", ["$scope", "notifications", - function ($scope:ng.IScope, $notifications:angular.notifications.INotificationFactory) { // <-- Inject 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); } -]); \ No newline at end of file +]);