docs(forms): fix FormArray description (#14094)

Closes #14075

PR Close #14094
This commit is contained in:
Dzmitry Shylovich 2017-01-25 10:52:41 +03:00 committed by Miško Hevery
parent 94f84c5d7e
commit 2ffa1a71aa
1 changed files with 2 additions and 2 deletions

View File

@ -1102,8 +1102,8 @@ export class FormGroup extends AbstractControl {
} }
/** /**
* @whatItDoes Tracks the value and validity state of an array of {@link FormControl} * @whatItDoes Tracks the value and validity state of an array of {@link FormControl},
* instances. * {@link FormGroup} or {@link FormArray} instances.
* *
* A `FormArray` aggregates the values of each child {@link FormControl} into an array. * 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 * It calculates its status by reducing the statuses of its children. For example, if one of