diff options
| author | Brian Ford | 2014-03-03 12:36:30 -0800 | 
|---|---|---|
| committer | Brian Ford | 2014-03-03 12:36:30 -0800 | 
| commit | 66c14ce84a149be7b288a854764d72f92865493a (patch) | |
| tree | 4cc29b97fdae74d8b309f4e81c5465a5b77045b9 /docs | |
| parent | d224f03ef4aebe80628d5195cf64db5c71627a24 (diff) | |
| download | angular.js-66c14ce84a149be7b288a854764d72f92865493a.tar.bz2 | |
docs(guide/concepts): fix links
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/content/guide/concepts.ngdoc | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/docs/content/guide/concepts.ngdoc b/docs/content/guide/concepts.ngdoc index bee2f195..63ec1bcf 100644 --- a/docs/content/guide/concepts.ngdoc +++ b/docs/content/guide/concepts.ngdoc @@ -185,7 +185,7 @@ The following graphic shows how everything works together after we introduced th  Right now, the `InvoiceController` contains all logic of our example. When the application grows it  is a good practice to move view independent logic from the controller into a so called -<a name="service">"{@link dev_guide.services service}"</a>, so it can be reused by other parts +<a name="service">"{@link services service}"</a>, so it can be reused by other parts  of the application as well. Later on, we could also change that service to load the exchange rates  from the web, e.g. by calling the Yahoo Finance API, without changing the controller. @@ -278,7 +278,7 @@ The code snippet `angular.module('invoice2', ['finance2'])`  specifies that the  Now that Angular knows of all the parts of the application, it needs to create them.  In the previous section we saw that controllers are created using a factory function.  For services there are multiple ways to define their factory -(see the {@link dev_guide.services service guide}). +(see the {@link services service guide}).  In the example above, we are using a function that returns the `currencyConverter` function as the factory  for the service. | 
