Skip to content

Commit 7d2cf93

Browse files
tpierepkozlowski-opensource
authored andcommitted
docs(tutorial): update step_09.ngdoc
Closes angular#5991
1 parent 7d60497 commit 7d2cf93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/content/tutorial/step_09.ngdoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ The name of our filter is "checkmark". The `input` evaluates to either `true` or
4040
return one of the two unicode characters we have chosen to represent true (`\u2713` -> ✓) or false (`\u2718` -> ✘).
4141

4242
Now that our filter is ready, we need to register the `phonecatFilters` module as a dependency for
43-
our main `phonecat` module.
43+
our main `phonecatApp` module.
4444

4545
__`app/js/app.js`:__
4646

4747
```js
4848
...
49-
angular.module('phonecatApp', ['phonecatFilters']).
49+
angular.module('phonecatApp', ['ngRoute','phonecatControllers','phonecatFilters']).
5050
...
5151
```
5252

0 commit comments

Comments
 (0)