Skip to content

Commit db1ec6d

Browse files
committed
Remove useless symbols
1 parent 94c5830 commit db1ec6d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Initially each SPA loads `index.html` file. In the case of AngularJS this file c
8989
<script src="angular.js"></script>
9090
</body>
9191
</html>
92-
````
92+
```
9393

9494
With AngularJS expressions partials define what kind of actions should be performed for handling different user interactions. In the example above the value of the attribute `ng-click` states that the method `changeFoo` of the current *scope* will be invoked.
9595

@@ -107,7 +107,7 @@ function MyController($scope) {
107107
alert('Foo changed');
108108
};
109109
}
110-
````
110+
```
111111

112112
For example, if we wire the sample controller above with the partial provided in the previous section the user will be able to interact with the application in few different ways.
113113

@@ -942,7 +942,7 @@ function ChildCtrl($scope, User) {
942942
}
943943
```
944944
945-
This example aims to illustrates the most trivial way to reuse logic by using a base controller, anyway in production applications I don't recommend you to put your authorization logic in the controllers. The access to the different routes could be determined on a higher level of abstraction.
945+
This example aims to illustrates the most trivial way to reuse logic by using a base controller, anyway in production applications I don't recommend you to put your authorization logic in the controllers. The access to the different routes could be determined on a higher level of abstraction.
946946
947947
The `ChildCtrl` is responsible for handling actions such as clicking the button with label `"Click"` and exposing the model to the view, by attaching it to the scope.
948948

0 commit comments

Comments
 (0)