aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/dev_guide.services.understanding_services.ngdoc
diff options
context:
space:
mode:
authorPeter Bacon Darwin2014-02-06 13:33:42 +0000
committerPeter Bacon Darwin2014-02-16 19:03:40 +0000
commitc7e815f63b6c22f5bbc798f34386c01fa72cab7d (patch)
tree13d8e640ae037112a63f240be22390cc5b3fc522 /docs/content/guide/dev_guide.services.understanding_services.ngdoc
parent6483dea08c6fae937e62ce242212152d7ef27d91 (diff)
downloadangular.js-c7e815f63b6c22f5bbc798f34386c01fa72cab7d.tar.bz2
docs(bike-shed-migration): fix up links outside the domain
It is safer to use markdown style links and save jsdoc style links for internal links and code references
Diffstat (limited to 'docs/content/guide/dev_guide.services.understanding_services.ngdoc')
-rw-r--r--docs/content/guide/dev_guide.services.understanding_services.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/guide/dev_guide.services.understanding_services.ngdoc b/docs/content/guide/dev_guide.services.understanding_services.ngdoc
index aebd2fa5..bb02f541 100644
--- a/docs/content/guide/dev_guide.services.understanding_services.ngdoc
+++ b/docs/content/guide/dev_guide.services.understanding_services.ngdoc
@@ -18,7 +18,7 @@ care of the rest. The Angular injector subsystem is in charge of service instant
of dependencies, and provision of dependencies to components as requested.
Angular injects dependencies using
-{@link http://misko.hevery.com/2009/02/19/constructor-injection-vs-setter-injection/ "constructor" injection}.
+["constructor" injection](http://misko.hevery.com/2009/02/19/constructor-injection-vs-setter-injection/).
The dependency is passed to the component's factory/constructor function. Because JavaScript is a dynamically
typed language, Angular's dependency injection subsystem cannot use static types to identify service
dependencies. For this reason a component must, explicitly, define its dependencies by using one of the