From c65f18a2fa4e605a0900a6ca18caece5e2bd27fc Mon Sep 17 00:00:00 2001 From: ksvitkovsky Date: Sun, 13 Aug 2017 16:12:08 +0400 Subject: [PATCH] docs(forms): fix reactive-forms guide typo closes #17943 --- aio/content/guide/reactive-forms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/reactive-forms.md b/aio/content/guide/reactive-forms.md index 3279133ef7..929bf17dcc 100644 --- a/aio/content/guide/reactive-forms.md +++ b/aio/content/guide/reactive-forms.md @@ -1134,7 +1134,7 @@ The reactive forms approach both emphasizes and facilitates this distinction. The default form displays a nameless hero with no addresses. You need a method to populate (or repopulate) the _secretLairs_ with actual hero addresses whenever -the parent `HeroListComponent` sets the `HeroListComponent.hero` input property to a new `Hero`. +the parent `HeroListComponent` sets the `HeroDetailComponent.hero` input property to a new `Hero`. The following `setAddresses` method replaces the _secretLairs_ `FormArray` with a new `FormArray`, initialized by an array of hero address `FormGroups`.