aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content
diff options
context:
space:
mode:
authorStéphane Reynaud2014-02-21 12:39:17 +0100
committerPeter Bacon Darwin2014-02-21 13:52:30 +0000
commita9cc6efb3caf833eb85dfce0025ca75d68d23ce0 (patch)
tree29b503827236cbf0da5d2702f815bd0aac93e1b5 /docs/content
parentd7d3ef12a6d13db3f8283cfd3d7bf8ce3e0698a6 (diff)
downloadangular.js-a9cc6efb3caf833eb85dfce0025ca75d68d23ce0.tar.bz2
docs(tutorial/step_11): fix url-based links refs to AUTO module
Closes #6389
Diffstat (limited to 'docs/content')
-rw-r--r--docs/content/tutorial/step_11.ngdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/content/tutorial/step_11.ngdoc b/docs/content/tutorial/step_11.ngdoc
index dad92bb8..76eb92fa 100644
--- a/docs/content/tutorial/step_11.ngdoc
+++ b/docs/content/tutorial/step_11.ngdoc
@@ -14,7 +14,7 @@ In this step, you will improve the way our app fetches data.
The next improvement we will make to our app is to define a custom service that represents a [RESTful](http://en.wikipedia.org/wiki/Representational_State_Transfer) client. Using this client we
can make XHR requests for data in an easier way, without having to deal with the lower-level {@link
-api/ng.$http $http} API, HTTP methods and URLs.
+ng.$http $http} API, HTTP methods and URLs.
The most important changes are listed below. You can see the full diff on [GitHub](https://github.com/angular/angular-phonecat/compare/step-10...step-11):
@@ -57,7 +57,7 @@ service declared a dependency on the `$resource` service.
The {@link ngResource.$resource `$resource`} service makes it easy to create a
[RESTful](http://en.wikipedia.org/wiki/Representational_State_Transfer) client with just a few
lines of code. This client can then be used in our application, instead of the lower-level {@link
-api/ng.$http $http} service.
+ng.$http $http} service.
__`app/js/app.js`.__