diff options
| author | tpiere | 2014-01-26 10:21:07 -0600 |
|---|---|---|
| committer | Brian Ford | 2014-03-07 15:04:37 -0800 |
| commit | 84f36701bc70079f5bb983aaa5b24d7b46c49299 (patch) | |
| tree | e09cdaceb34c29791b3dedd859e03108579b95c5 /docs/content/tutorial | |
| parent | 6d4ce240de18fc71c97635ae93a4738c59606e41 (diff) | |
| download | angular.js-84f36701bc70079f5bb983aaa5b24d7b46c49299.tar.bz2 | |
docs(tutorial): update step_09.ngdoc
Closes #5991
Diffstat (limited to 'docs/content/tutorial')
| -rw-r--r-- | docs/content/tutorial/step_09.ngdoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/content/tutorial/step_09.ngdoc b/docs/content/tutorial/step_09.ngdoc index e95025fb..a3c6c6ad 100644 --- a/docs/content/tutorial/step_09.ngdoc +++ b/docs/content/tutorial/step_09.ngdoc @@ -40,13 +40,13 @@ The name of our filter is "checkmark". The `input` evaluates to either `true` or return one of the two unicode characters we have chosen to represent true (`\u2713` -> ✓) or false (`\u2718` -> ✘). Now that our filter is ready, we need to register the `phonecatFilters` module as a dependency for -our main `phonecat` module. +our main `phonecatApp` module. __`app/js/app.js`:__ ```js ... -angular.module('phonecatApp', ['phonecatFilters']). +angular.module('phonecatApp', ['ngRoute','phonecatControllers','phonecatFilters']). ... ``` |
