docs: fix incorrect FormArray example link

Update the typed forms guide link to point to the correct
FormArray section instead of the FormControl getting started example.

(cherry picked from commit e3781cd88a)
This commit is contained in:
Shuaib Hasan Akib 2025-12-30 16:48:09 +06:00 committed by Kristiyan Kostadinov
parent cd405685af
commit c0cdec5cee

View file

@ -113,7 +113,7 @@ export type ɵFormArrayRawValue<T extends AbstractControl<any>> = ɵTypedOrUntyp
* the `FormArray` directly, as that result in strange and unexpected behavior such
* as broken change detection.
*
* @see [FormArray: Dynamic, Homogenous Collections](guide/forms/typed-forms#formcontrol-getting-started)
* @see [FormArray: Dynamic, Homogenous Collections](guide/forms/typed-forms#formarray-dynamic-homogenous-collections)
* @see [Creating dynamic forms](guide/forms/reactive-forms#creating-dynamic-forms)
*
* @publicApi