diff options
| -rw-r--r-- | docs/content/tutorial/step_07.ngdoc | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/docs/content/tutorial/step_07.ngdoc b/docs/content/tutorial/step_07.ngdoc index 87c9f8d0..20355c64 100644 --- a/docs/content/tutorial/step_07.ngdoc +++ b/docs/content/tutorial/step_07.ngdoc @@ -121,7 +121,7 @@ view, Angular will use the `phone-list.html` template and the `PhoneListCtrl` co  We reused the `PhoneListCtrl` controller that we constructed in previous steps and we added a new,  empty `PhoneDetailCtrl` controller to the `app/js/controllers.js` file for the phone details view. -`$route.otherwise({redirectTo: '/phones'})` triggers a redirection to `/phones` when the browser +`$routeProvider.otherwise({redirectTo: '/phones'})` triggers a redirection to `/phones` when the browser  address doesn't match either of our routes.  Note the use of the `:phoneId` parameter in the second route declaration. The `$route` service uses | 
