Skip to content

Commit fbfde7c

Browse files
feat(myApp.controllers): add $scope param to clarify annotation
Closes angular#154
1 parent b76b5f5 commit fbfde7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/js/controllers.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
/* Controllers */
44

55
angular.module('myApp.controllers', [])
6-
.controller('MyCtrl1', [function() {
6+
.controller('MyCtrl1', ['$scope', function($scope) {
77

88
}])
9-
.controller('MyCtrl2', [function() {
9+
.controller('MyCtrl2', ['$scope', function($scope) {
1010

1111
}]);

0 commit comments

Comments
 (0)