From da8bb1b45b5edbe689d5ec843b0531f4d4d8c308 Mon Sep 17 00:00:00 2001 From: chumtoadafuq Date: Sun, 30 Jul 2017 12:21:15 +0100 Subject: [PATCH] docs(aio): fixed list format in FormArray section --- aio/content/guide/reactive-forms.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/aio/content/guide/reactive-forms.md b/aio/content/guide/reactive-forms.md index b0b1ef0ebd..3279133ef7 100644 --- a/aio/content/guide/reactive-forms.md +++ b/aio/content/guide/reactive-forms.md @@ -1080,8 +1080,11 @@ To get access to the `FormArray` class, import it into `hero-detail.component.ts To _work_ with a `FormArray` you do the following: + 1. Define the items (`FormControls` or `FormGroups`) in the array. + 1. Initialize the array with items created from data in the _data model_. + 1. Add and remove items as the user requires. In this guide, you define a `FormArray` for `Hero.addresses` and