diff options
Diffstat (limited to 'docs/content/guide/dev_guide.services.managing_dependencies.ngdoc')
| -rw-r--r-- | docs/content/guide/dev_guide.services.managing_dependencies.ngdoc | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/docs/content/guide/dev_guide.services.managing_dependencies.ngdoc b/docs/content/guide/dev_guide.services.managing_dependencies.ngdoc index 726a8bbe..8803eb0d 100644 --- a/docs/content/guide/dev_guide.services.managing_dependencies.ngdoc +++ b/docs/content/guide/dev_guide.services.managing_dependencies.ngdoc @@ -87,10 +87,10 @@ of which depend on other services that are provided by the Angular framework:  Things to notice in this example: -* The `batchLog` service depends on the built-in {@link api/ng.$interval $interval} and -{@link api/ng.$log $log} services, and allows messages to be logged into the +* The `batchLog` service depends on the built-in {@link ng.$interval $interval} and +{@link ng.$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/ngRoute.$route +* The `routeTemplateMonitor` service depends on the built-in {@link ngRoute.$route  $route} service as well as our custom `batchLog` service.  * Both of our services use the factory function signature and array notation for inject annotations  to declare their dependencies. It is important that the order of the string identifiers in the array @@ -109,5 +109,5 @@ that the injector uses to determine which services and in which order to inject.  ## Related API -* {@link api/ng Angular Service API} -* {@link api/angular.injector Angular Injector API} +* {@link ./ng Angular Service API} +* {@link angular.injector Angular Injector API} | 
