From 3e54a1b18ab698d55e1642a120f95ea3adf6af1b Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Fri, 29 Jul 2011 12:40:14 -0700 Subject: doc(tutorial): fixes and improvements from Toni and Ben --- docs/content/tutorial/step_07.ngdoc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'docs/content/tutorial/step_07.ngdoc') diff --git a/docs/content/tutorial/step_07.ngdoc b/docs/content/tutorial/step_07.ngdoc index 4f6a768e..0f5fdda2 100644 --- a/docs/content/tutorial/step_07.ngdoc +++ b/docs/content/tutorial/step_07.ngdoc @@ -68,8 +68,8 @@ function PhoneCatCtrl($route) { We created a new controller called `PhoneCatCtrl`. We declared its dependency on the `$route` service and used this service to declare that our application consists of two different views: -* The phone list view will be shown when the URL hash fragment is `/phone`. To construct this view, -angular will use the `phone-list.html` template and the `PhoneListCtrl` controller. +* The phone list view will be shown when the URL hash fragment is `/phones`. To construct this +view, angular will use the `phone-list.html` template and the `PhoneListCtrl` controller. * The phone details view will be shown when the URL hash fragment matches '/phone/:phoneId', where `:phoneId` is a variable part of the URL. To construct the phone details view, angular will use the @@ -151,7 +151,7 @@ __`app/partials/phone-list.html`:__ TBD: detail view for {{params.phoneId}} -Note how we are using `params` model defined in the `PhoneCanCtrl` controller. +Note how we are using `params` model defined in the `PhoneCatCtrl` controller. ## Test @@ -202,8 +202,8 @@ inheritance and model property shadowing do some wonders. # Summary -With the routing set up and the phone list view implemented, we're ready to go to step 8 to -implement the phone details view. +With the routing set up and the phone list view implemented, we're ready to go to {@link step_08 +step 8} to implement the phone details view.