From dd81e9fc5b5f8f44f2b73a89705e8a08af408a32 Mon Sep 17 00:00:00 2001 From: tpiere Date: Sun, 26 Jan 2014 10:21:07 -0600 Subject: [PATCH] Update step_09.ngdoc Line 43 - I believe the name of the module is "phonecatApp" not "phonecat". Line 48, From the previous steps, ngRoute and phonecatControllers are also dependencies for the phonecatApp module. --- docs/content/tutorial/step_09.ngdoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/tutorial/step_09.ngdoc b/docs/content/tutorial/step_09.ngdoc index 8f3cb5b9191f..a9ff1ddc3b01 100644 --- a/docs/content/tutorial/step_09.ngdoc +++ b/docs/content/tutorial/step_09.ngdoc @@ -40,12 +40,12 @@ 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`:__
 ...
-angular.module('phonecatApp', ['phonecatFilters']).
+angular.module('phonecatApp', ['ngRoute','phonecatControllers','phonecatFilters']).
 ...