aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/providers.ngdoc
diff options
context:
space:
mode:
authorPeter Bacon Darwin2014-02-12 22:47:42 +0000
committerPeter Bacon Darwin2014-02-16 19:03:41 +0000
commita564160511bf1bbed5a4fe5d2981fae1bb664eca (patch)
tree16fe76a5c8a4e75c50db5f15224f1b954060cd38 /docs/content/guide/providers.ngdoc
parent06f2ba899fac8ad004bf65dce39a3b05e2387c0f (diff)
downloadangular.js-a564160511bf1bbed5a4fe5d2981fae1bb664eca.tar.bz2
docs(bike-shed-migration): fix url-based links refs to AUTO module
Diffstat (limited to 'docs/content/guide/providers.ngdoc')
-rw-r--r--docs/content/guide/providers.ngdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/content/guide/providers.ngdoc b/docs/content/guide/providers.ngdoc
index f0d33b51..84136563 100644
--- a/docs/content/guide/providers.ngdoc
+++ b/docs/content/guide/providers.ngdoc
@@ -6,7 +6,7 @@
Each web application you build is composed of objects that collaborate to get stuff done. These
objects need to be instantiated and wired together for the app to work. In Angular apps most of
-these objects are instantiated and wired together automatically by the {@link api/AUTO.$injector
+these objects are instantiated and wired together automatically by the {@link auto.$injector
injector service}.
The injector creates two types of objects, **services** and **specialized objects**.
@@ -34,7 +34,7 @@ In order for the injector to know how to create and wire together all of these o
a registry of "recipes". Each recipe has an identifier of the object and the description of how to
create this object.
-Each recipe belongs to an {@link api/angular.Module Angular module}. An Angular module is a bag
+Each recipe belongs to an {@link angular.Module Angular module}. An Angular module is a bag
that holds one or more recipes. And since manually keeping track of module dependencies is no fun,
a module can contain information about dependencies on other modules as well.