This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ needed for a single view.
109
109
110
110
The most common way to keep Controllers slim is by encapsulating work that doesn't belong to
111
111
controllers into services and then using these services in Controllers via dependency injection.
112
- This is discussed in the {@link di Dependency Injection} {@link services
112
+ This is discussed in the {@link di Dependency Injection} and {@link services
113
113
Services} sections of this guide.
114
114
115
115
@@ -165,7 +165,7 @@ scope is augmented (managed) by the `SpicyController` Controller.
165
165
starts with capital letter and ends with "Controller".
166
166
- Assigning a property to `$scope` creates or updates the model.
167
167
- Controller methods can be created through direct assignment to scope (see the `chiliSpicy` method)
168
- - The Controller methods and properties are available in the template (for the `<div>` element and
168
+ - The Controller methods and properties are available in the template (for both the `<div>` element and
169
169
its children).
170
170
171
171
## Spicy Arguments Example
@@ -305,7 +305,7 @@ describe('myController function', function() {
305
305
```
306
306
307
307
308
- If you need to test a nested Controller you need to create the same scope hierarchy
308
+ If you need to test a nested Controller you must create the same scope hierarchy
309
309
in your test that exists in the DOM:
310
310
311
311
```js
You can’t perform that action at this time.
0 commit comments