aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/tutorial
diff options
context:
space:
mode:
authorDaniel2013-12-17 18:23:05 -0700
committerPawel Kozlowski2014-02-28 19:10:01 +0100
commit6b5baaddb0ec9369a55bf9c608fda9adcccc8e92 (patch)
treeeb64f4732ecb1a2edcd995250d373b41b88267f6 /docs/content/tutorial
parent9aab5bfc03bfb9f39b5c18b878e14c9a60a2681a (diff)
downloadangular.js-6b5baaddb0ec9369a55bf9c608fda9adcccc8e92.tar.bz2
docs(tutorial/step-05): fix path for 'phones.json'
Closes #5460
Diffstat (limited to 'docs/content/tutorial')
-rw-r--r--docs/content/tutorial/step_05.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/tutorial/step_05.ngdoc b/docs/content/tutorial/step_05.ngdoc
index ee94ba45..8291eeb8 100644
--- a/docs/content/tutorial/step_05.ngdoc
+++ b/docs/content/tutorial/step_05.ngdoc
@@ -66,7 +66,7 @@ phonecatApp.controller('PhoneListCtrl', function ($scope, $http) {
});
```
-`$http` makes an HTTP GET request to our web server, asking for `phone/phones.json` (the url is
+`$http` makes an HTTP GET request to our web server, asking for `phones/phones.json` (the url is
relative to our `index.html` file). The server responds by providing the data in the json file.
(The response might just as well have been dynamically generated by a backend server. To the
browser and our app they both look the same. For the sake of simplicity we used a json file in this