From 7f992326e445cd79d804663dfb9c3ab4ea420ddc Mon Sep 17 00:00:00 2001 From: Pawel Kozlowski Date: Mon, 8 Aug 2022 12:41:30 +0200 Subject: [PATCH] docs: update link to the TypeScript handbook (#47075) Closes #47070 PR Close #47075 --- aio/content/guide/architecture-components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/architecture-components.md b/aio/content/guide/architecture-components.md index ea78dd17f1e..92b85185a58 100644 --- a/aio/content/guide/architecture-components.md +++ b/aio/content/guide/architecture-components.md @@ -17,7 +17,7 @@ In the following example, the `HeroListComponent` class includes: * A `selectedHero` property that holds the last hero selected by the user. * A `selectHero()` method sets a `selectedHero` property when the user clicks to choose a hero from that list. -The component initializes the `heroes` property by using the `HeroService` service, which is a TypeScript [parameter property](https://www.typescriptlang.org/docs/handbook/classes.html#parameter-properties) on the constructor. Angular's dependency injection system provides the `HeroService` service to the component. +The component initializes the `heroes` property by using the `HeroService` service, which is a TypeScript [parameter property](https://www.typescriptlang.org/docs/handbook/2/classes.html#parameter-properties) on the constructor. Angular's dependency injection system provides the `HeroService` service to the component.