docs: change doc for address form group in reactive forms guide (#30007)

Closes #29925

PR Close #30007
This commit is contained in:
iliesaithamouda 2019-04-20 19:59:34 -04:00 committed by Ben Lesh
parent 63523f7964
commit f730c72318
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ In this example, `address group` combines the current `firstName` and `lastName`
After you update the model in the component class, update the template to connect the form group instance and its input elements.
Add the `address` form group containing the `firstName` and `lastName` fields to the `ProfileEditor` template.
Add the `address` form group containing the `street`, `city`, `state`, and `zip` fields to the `ProfileEditor` template.
<code-example path="reactive-forms/src/app/profile-editor/profile-editor.component.1.html" region="formgroupname" linenums="false" header="src/app/profile-editor/profile-editor.component.html (template nested form group)">