From 492e236ae69053c5c39dceeee116e3028c7d722f Mon Sep 17 00:00:00 2001 From: Aristeidis Bampakos Date: Wed, 19 Aug 2020 10:19:39 +0300 Subject: [PATCH] docs: Typos fixes in built-in directives guide (#38520) PR Close #38520 --- aio/content/guide/built-in-directives.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/content/guide/built-in-directives.md b/aio/content/guide/built-in-directives.md index d1a954169d..987939144b 100644 --- a/aio/content/guide/built-in-directives.md +++ b/aio/content/guide/built-in-directives.md @@ -194,7 +194,7 @@ which explains the following: * Using [``](guide/structural-directives#ngcontainer "") to group elements when there is no suitable host element for the directive. * How to write your own structural directive. -* That you can only apply [one structural directive](guide/structural-directives#one-per-element "one per host element") to an element. +* Why you [can only apply one structural directive](guide/structural-directives#one-per-element "one per host element") to an element. @@ -281,7 +281,7 @@ You define a block of HTML that defines how a single item should be displayed and then you tell Angular to use that block as a template for rendering each item in the list. The text assigned to `*ngFor` is the instruction that guides the repeater process. -The following example shows `NgFor` applied to a simple `
`. (Don't forget the asterisk (`*`) in front of `ngFor`.) +The following example shows `NgFor` applied to a simple `
`.