aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/dev_guide.services.managing_dependencies.ngdoc
diff options
context:
space:
mode:
authorIgor Minar2011-06-06 10:45:22 -0700
committerIgor Minar2011-06-06 23:10:27 -0700
commitaf710c3ac181267f1bb6ca9a9ce7174319c293f4 (patch)
tree3a9cafa66dd3df2281177ea47d0718c6d7217def /docs/content/guide/dev_guide.services.managing_dependencies.ngdoc
parente89ef35d058d5909e55c870d5686e8912ce820a9 (diff)
downloadangular.js-af710c3ac181267f1bb6ca9a9ce7174319c293f4.tar.bz2
fix wrapping api links into code element
Diffstat (limited to 'docs/content/guide/dev_guide.services.managing_dependencies.ngdoc')
-rw-r--r--docs/content/guide/dev_guide.services.managing_dependencies.ngdoc8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/content/guide/dev_guide.services.managing_dependencies.ngdoc b/docs/content/guide/dev_guide.services.managing_dependencies.ngdoc
index c1abf789..5adbefae 100644
--- a/docs/content/guide/dev_guide.services.managing_dependencies.ngdoc
+++ b/docs/content/guide/dev_guide.services.managing_dependencies.ngdoc
@@ -59,11 +59,11 @@ $route.onChange(function() {
Things to notice in this example:
-* The `batchLog` service depends on the built-in `{@link api/angular.service.$defer $defer}` and
-`{@link api/angular.service.$log $log}` services, and allows messages to be logged into the
+* The `batchLog` service depends on the built-in {@link api/angular.service.$defer $defer} and
+{@link api/angular.service.$log $log} services, and allows messages to be logged into the
`console.log` in batches.
-* The `routeTemplateMonitor` service depends on the built-in `{@link api/angular.service.$route
-$route}` service as well as our custom `batchLog` service.
+* The `routeTemplateMonitor` service depends on the built-in {@link api/angular.service.$route
+$route} service as well as our custom `batchLog` service.
* The `routeTemplateMonitor` service is declared to be eager, so that it is started as soon as the
application starts.
* To underline the need for the eager instantiation of the `routeTemplateMonitor` service, nothing