From 36dd8179134b639e5a87883da8b0d505cf4982fc Mon Sep 17 00:00:00 2001 From: Shapovalov-Dmitry <35997118+Shapovalov-Dmitry@users.noreply.github.com> Date: Tue, 24 Mar 2020 12:29:05 +0200 Subject: [PATCH] docs: fixed typo in https://angular.io/guide/glossary (#36220) PR Close #36220 --- aio/content/guide/glossary.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/glossary.md b/aio/content/guide/glossary.md index 5d3c027a13..8f7f45e359 100644 --- a/aio/content/guide/glossary.md +++ b/aio/content/guide/glossary.md @@ -732,7 +732,7 @@ The alternative is a [template-driven form](#template-driven-forms). When using reactive forms: * The "source of truth", the form model, is defined in the component class. -* Validation is set up through validation functions rather than valdation directives. +* Validation is set up through validation functions rather than validation directives. * Each control is explicitly created in the component class by creating a `FormControl` instance manually or with `FormBuilder`. * The template input elements do *not* use `ngModel`. * The associated Angular directives are prefixed with `form`, such as `formControl`, `formGroup`, and `formControlName`.