From 44c8f46131d99cc8877af9947b191c316080aeaa Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Mon, 24 May 2021 14:40:10 -0700 Subject: [PATCH] docs: fix ng-for link in structural-directives.md (#42293) Correctly the reference to ng-for as `NgForOf` so that we get the word linked to the API page. `NgFor` is not a JavaScript symbol so the docs infra doesn't autolink to the API page unless we use the correct symbol name - `NgForOf`. PR Close #42293 --- aio/content/guide/structural-directives.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/structural-directives.md b/aio/content/guide/structural-directives.md index 4e27238a26..7bee930713 100644 --- a/aio/content/guide/structural-directives.md +++ b/aio/content/guide/structural-directives.md @@ -8,7 +8,7 @@ For the example application that this page describes, see the -For more information on Angular's built-in structural directives, such as `NgIf`, `NgFor`, and `NgSwitch`, see [Built-in directives](guide/built-in-directives). +For more information on Angular's built-in structural directives, such as `NgIf`, `NgForOf`, and `NgSwitch`, see [Built-in directives](guide/built-in-directives). {@a unless}