aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide
diff options
context:
space:
mode:
authorIgor Minar2011-12-07 16:59:06 -0800
committerIgor Minar2011-12-07 16:59:06 -0800
commit871252ab4c1fcb04e2da4d6c1171aee6fcb1cc84 (patch)
treec15b5ab2fd28347722fb64b43e19d04b0f081407 /docs/content/guide
parent0c534644bc1908fad4e8df5754d3ec224bc7ed7e (diff)
downloadangular.js-871252ab4c1fcb04e2da4d6c1171aee6fcb1cc84.tar.bz2
docs(guide): fix $xhr -> $http links
Diffstat (limited to 'docs/content/guide')
-rw-r--r--docs/content/guide/dev_guide.scopes.internals.ngdoc2
-rw-r--r--docs/content/guide/dev_guide.services.understanding_services.ngdoc2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/content/guide/dev_guide.scopes.internals.ngdoc b/docs/content/guide/dev_guide.scopes.internals.ngdoc
index b63f566c..ca510a21 100644
--- a/docs/content/guide/dev_guide.scopes.internals.ngdoc
+++ b/docs/content/guide/dev_guide.scopes.internals.ngdoc
@@ -86,7 +86,7 @@ api/angular.module.ng.$rootScope.Scope#$watch scope.$watch()} API.
For mutations to be properly observed, you should make them only within the execution of the
function passed into {@link api/angular.module.ng.$rootScope.Scope#$apply scope.$apply()} call. (Angular apis do this
implicitly, so no extra `$apply` call is needed when doing synchronous work in controllers, or
-asynchronous work with {@link api/angular.module.ng.$xhr $xhr} or {@link api/angular.module.ng.$defer
+asynchronous work with {@link api/angular.module.ng.$http $http} or {@link api/angular.module.ng.$defer
$defer} services.
4. **Mutation observation**
diff --git a/docs/content/guide/dev_guide.services.understanding_services.ngdoc b/docs/content/guide/dev_guide.services.understanding_services.ngdoc
index ca100561..ac4a7909 100644
--- a/docs/content/guide/dev_guide.services.understanding_services.ngdoc
+++ b/docs/content/guide/dev_guide.services.understanding_services.ngdoc
@@ -3,7 +3,7 @@
@description
Angular services are singletons that carry out specific tasks common to web apps, such as the
-{@link api/angular.module.ng.$xhr $xhr service} that provides low level access to the browser's
+{@link api/angular.module.ng.$http $http service} that provides low level access to the browser's
`XMLHttpRequest` object.
To use an angular service, you identify it as a dependency for the dependent (a controller, or