From 01f9b57f6a91f8ab27dd8a26abb49b6077db04ca Mon Sep 17 00:00:00 2001 From: Ryth-cs <49680490+Ryth-cs@users.noreply.github.com> Date: Tue, 7 Nov 2023 23:01:19 +0000 Subject: [PATCH] docs: correct reactive-forms typo (#52608) PR Close #52608 --- adev/src/content/guide/forms/reactive-forms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adev/src/content/guide/forms/reactive-forms.md b/adev/src/content/guide/forms/reactive-forms.md index 26309767f29..6c1a395f3d6 100644 --- a/adev/src/content/guide/forms/reactive-forms.md +++ b/adev/src/content/guide/forms/reactive-forms.md @@ -356,7 +356,7 @@ Use the `FormBuilder.array()` method to define the array, and the `FormBuilder.c The aliases control in the form group instance is now populated with a single control until more controls are added dynamically. - + A getter provides access to the aliases in the form array instance compared to repeating the `profileForm.get()` method to get each instance. The form array instance represents an undefined number of controls in an array. It's convenient to access a control through a getter, and this approach is straightforward to repeat for additional controls.
Use the getter syntax to create an `aliases` class property to retrieve the alias's form array control from the parent form group.