From c16995eb599c9716fcbd53ff0c5996a8e19bbbc9 Mon Sep 17 00:00:00 2001 From: d0rian <38584296+d0rian7@users.noreply.github.com> Date: Tue, 13 Oct 2020 19:05:35 +0200 Subject: [PATCH] docs: fix typo in the Reactive Forms guide #5 (#39245) PR Close #39245 --- 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 ca73e5fad4..353b88bf65 100644 --- a/aio/content/guide/reactive-forms.md +++ b/aio/content/guide/reactive-forms.md @@ -180,7 +180,7 @@ A form group tracks the status and changes for each of its controls, so if one o -Note that just as a form group contains a group of controls, the *profile form* `FormGroup` is bound to the `form` element with the `FormGroup` directive, creating a communication layer between the model and the form containing the inputs. The `formControlName` input provided by the `FormControlName` directive binds each individual input to the form control defined in `FormGroup`. The form controls communicate with their respective elements. They also communicate changes to the form group instance, which provides the source of truth for the model value. +Note that just as a form group contains a group of controls, the *profileForm* `FormGroup` is bound to the `form` element with the `FormGroup` directive, creating a communication layer between the model and the form containing the inputs. The `formControlName` input provided by the `FormControlName` directive binds each individual input to the form control defined in `FormGroup`. The form controls communicate with their respective elements. They also communicate changes to the form group instance, which provides the source of truth for the model value. **Save form data**