From 2ffa1a71aad5b7261e9bf210b1712f3007fdc2fd Mon Sep 17 00:00:00 2001 From: Dzmitry Shylovich Date: Wed, 25 Jan 2017 10:52:41 +0300 Subject: [PATCH] docs(forms): fix FormArray description (#14094) Closes #14075 PR Close #14094 --- modules/@angular/forms/src/model.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/@angular/forms/src/model.ts b/modules/@angular/forms/src/model.ts index 46075daaa0..d88f949c34 100644 --- a/modules/@angular/forms/src/model.ts +++ b/modules/@angular/forms/src/model.ts @@ -1102,8 +1102,8 @@ export class FormGroup extends AbstractControl { } /** - * @whatItDoes Tracks the value and validity state of an array of {@link FormControl} - * instances. + * @whatItDoes Tracks the value and validity state of an array of {@link FormControl}, + * {@link FormGroup} or {@link FormArray} instances. * * A `FormArray` aggregates the values of each child {@link FormControl} into an array. * It calculates its status by reducing the statuses of its children. For example, if one of