Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 66c14ce

Browse files
committed
docs(guide/concepts): fix links
1 parent d224f03 commit 66c14ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/content/guide/concepts.ngdoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ The following graphic shows how everything works together after we introduced th
185185

186186
Right now, the `InvoiceController` contains all logic of our example. When the application grows it
187187
is a good practice to move view independent logic from the controller into a so called
188-
<a name="service">"{@link dev_guide.services service}"</a>, so it can be reused by other parts
188+
<a name="service">"{@link services service}"</a>, so it can be reused by other parts
189189
of the application as well. Later on, we could also change that service to load the exchange rates
190190
from the web, e.g. by calling the Yahoo Finance API, without changing the controller.
191191

@@ -278,7 +278,7 @@ The code snippet `angular.module('invoice2', ['finance2'])` specifies that the
278278
Now that Angular knows of all the parts of the application, it needs to create them.
279279
In the previous section we saw that controllers are created using a factory function.
280280
For services there are multiple ways to define their factory
281-
(see the {@link dev_guide.services service guide}).
281+
(see the {@link services service guide}).
282282
In the example above, we are using a function that returns the `currencyConverter` function as the factory
283283
for the service.
284284

0 commit comments

Comments
 (0)