From 81723b29da617f4434a1a80dd2ddc0c1f372e8c5 Mon Sep 17 00:00:00 2001 From: "Kevin C. Coram" Date: Tue, 31 Dec 2019 11:25:07 -0800 Subject: [PATCH] Reworded 'own controls' description for better clarity --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 847a35a..67df31e 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ The [Base Line](apps/baseline) application implements the contact manangement fo ## Components Creating Own Form Controls -When searching the Internet for examples of nested forms in Angular, one popular approach is to have each sub-component be responsible for creating its own form controls. The parent form is passed in as an `@Input`, and the component adds its components to the form using the `addControl(name, control)` method. +Searching the Internet for examples of nested forms in Angular shows one popular approach is to have each sub-component be responsible for creating its own form controls. The parent form is passed in as an `@Input`, and the component adds its components to the form using the `addControl(name, control)` method. The [Parent Form](apps/parent-form) application explores this approach.