Skip to content

Commit d60bdbd

Browse files
Merge pull request #2943 from cibucristi/patch-1
Updated Angular's documentation link to Angular's new dev docs.
2 parents 48c02d1 + c5f8f7a commit d60bdbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ The `CatsService` is **injected** through the class constructor. Notice the use
112112

113113
#### Dependency injection
114114

115-
Nest is built around the strong design pattern commonly known as **Dependency injection**. We recommend reading a great article about this concept in the official [Angular](https://angular.io/guide/dependency-injection) documentation.
115+
Nest is built around the strong design pattern commonly known as **Dependency injection**. We recommend reading a great article about this concept in the official [Angular](https://angular.dev/guide/di) documentation.
116116

117117
In Nest, thanks to TypeScript capabilities, it's extremely easy to manage dependencies because they are resolved just by type. In the example below, Nest will resolve the `catsService` by creating and returning an instance of `CatsService` (or, in the normal case of a singleton, returning the existing instance if it has already been requested elsewhere). This dependency is resolved and passed to your controller's constructor (or assigned to the indicated property):
118118

0 commit comments

Comments
 (0)