diff options
| author | Igor Minar | 2011-07-29 12:40:14 -0700 | 
|---|---|---|
| committer | Igor Minar | 2011-07-29 12:40:27 -0700 | 
| commit | 3e54a1b18ab698d55e1642a120f95ea3adf6af1b (patch) | |
| tree | d3275e42cbdec4b1670cd812d9bb19238e709464 /docs/content/tutorial/step_07.ngdoc | |
| parent | 4b90f65614af2b8da1e5904b2b0f2fce7c4e08e3 (diff) | |
| download | angular.js-3e54a1b18ab698d55e1642a120f95ea3adf6af1b.tar.bz2 | |
doc(tutorial): fixes and improvements from Toni and Ben
Diffstat (limited to 'docs/content/tutorial/step_07.ngdoc')
| -rw-r--r-- | docs/content/tutorial/step_07.ngdoc | 10 | 
1 files changed, 5 insertions, 5 deletions
| 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}}  </pre> -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.  <ul doc:tutorial-nav="7"></ul> | 
