From dc1ed3c47e2d9fab196a745df5152e149c65211f Mon Sep 17 00:00:00 2001 From: Lucas Date: Mon, 10 Dec 2018 12:01:39 -0300 Subject: [PATCH] docs: fix ngModel typo in form validation guide (#27574) Fix typo PR Close #27574 --- 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 744403bc4a..2f364d5e34 100644 --- a/aio/content/guide/form-validation.md +++ b/aio/content/guide/form-validation.md @@ -302,7 +302,7 @@ After asynchronous validation begins, the form control enters a `pending` state. A common UI pattern is to show a spinner while the async validation is being performed. The following example presents how to achieve this with template-driven forms: ```html - + ```