You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/tutorial/step_11.ngdoc
+2-2
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ In this step, you will improve the way our app fetches data.
14
14
15
15
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
16
16
can make XHR requests for data in an easier way, without having to deal with the lower-level {@link
17
-
api/ng.$http $http} API, HTTP methods and URLs.
17
+
ng.$http $http} API, HTTP methods and URLs.
18
18
19
19
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):
20
20
@@ -57,7 +57,7 @@ service declared a dependency on the `$resource` service.
57
57
The {@link ngResource.$resource `$resource`} service makes it easy to create a
58
58
[RESTful](http://en.wikipedia.org/wiki/Representational_State_Transfer) client with just a few
59
59
lines of code. This client can then be used in our application, instead of the lower-level {@link
0 commit comments