From f6644c720e990ef7cfd907ad675c2773deb8c182 Mon Sep 17 00:00:00 2001 From: Alexander Tseung Date: Mon, 15 Dec 2014 07:38:37 -0800 Subject: [PATCH] docs(tutorial/step_08): fix capitalization Closes #10466 --- docs/content/tutorial/step_08.ngdoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/tutorial/step_08.ngdoc b/docs/content/tutorial/step_08.ngdoc index 41fa6567..e13b8db0 100644 --- a/docs/content/tutorial/step_08.ngdoc +++ b/docs/content/tutorial/step_08.ngdoc @@ -20,7 +20,7 @@ fleshed out the `phone-detail.html` view template. ## Data -In addition to `phones.json`, the `app/phones/` directory also contains one json file for each +In addition to `phones.json`, the `app/phones/` directory also contains one JSON file for each phone: __`app/phones/nexus-s.json`:__ (sample snippet) @@ -53,7 +53,7 @@ show this data in the phone detail view. ## Controller -We'll expand the `PhoneDetailCtrl` by using the `$http` service to fetch the json files. This works +We'll expand the `PhoneDetailCtrl` by using the `$http` service to fetch the JSON files. This works the same way as the phone list controller. __`app/js/controllers.js`:__