From 00300f66e80674d871a1a7d453e0255eca3bde7c Mon Sep 17 00:00:00 2001 From: Kapunahele Wong Date: Thu, 21 Dec 2017 10:31:55 -0500 Subject: [PATCH] docs(forms): clarify note in reactive forms doc (#21134) PR Close #21134 --- 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 3a3a8cc517..388a8921b6 100644 --- a/aio/content/guide/reactive-forms.md +++ b/aio/content/guide/reactive-forms.md @@ -596,7 +596,7 @@ within the `form` element. *Reminder*: Ignore the many mentions of `form-group`, `form-control`, `center-block`, and `checkbox` in this markup. Those are _bootstrap_ CSS classes that Angular itself ignores. -Pay attention to the `formGroupName` and `formControlName` attributes. +Pay attention to the `[formGroup]` and `formControlName` attributes. They are the Angular directives that bind the HTML controls to the Angular `FormGroup` and `FormControl` properties in the component class.