From 5c0e681bf30121e7efec5304dd14d3e7e94ba6db Mon Sep 17 00:00:00 2001 From: Tomasz Kula Date: Mon, 11 Jun 2018 14:27:54 +0200 Subject: [PATCH] docs(aio): fix adding to template driven forms (#23743) PR Close #23743 --- aio/content/guide/form-validation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/form-validation.md b/aio/content/guide/form-validation.md index 94f1e3ff05..5f006b61ca 100644 --- a/aio/content/guide/form-validation.md +++ b/aio/content/guide/form-validation.md @@ -268,7 +268,7 @@ First we must create a directive that will wrap the validator function. We provi -Next, we have to add the directive to the html template. Since the validator must be registered at the `FormGroup` level, we put the directive on the `form` tag. +Next, we have to add the directive to the html template. Since the validator must be registered at the highest level in the form, we put the directive on the `form` tag.