From 8e24c0fff4847e5687d88b6aee3c51c48dc8ba6d Mon Sep 17 00:00:00 2001 From: Aditya Bhardwaj Date: Thu, 2 Nov 2017 18:14:28 +0530 Subject: [PATCH] docs(aio): fix typo (#20103) PR Close #20103 --- 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 a01d861425..f154e27178 100644 --- a/aio/content/guide/form-validation.md +++ b/aio/content/guide/form-validation.md @@ -40,7 +40,7 @@ Note the following: also carries a custom validator directive, `forbiddenName`. For more information, see [Custom validators](guide/form-validation#custom-validators) section. -* `#name="ngModel"` exports `NgModel` into a local variable callled `name`. `NgModel` mirrors many of the properties of its underlying +* `#name="ngModel"` exports `NgModel` into a local variable called `name`. `NgModel` mirrors many of the properties of its underlying `FormControl` instance, so you can use this in the template to check for control states such as `valid` and `dirty`. For a full list of control properties, see the [AbstractControl](api/forms/AbstractControl) API reference.