From 334caf8e7c6d8d7c59dbe24264ecce8fba595aaa Mon Sep 17 00:00:00 2001 From: Kapunahele Wong Date: Wed, 27 Sep 2017 18:25:41 -0400 Subject: [PATCH] docs(aio): add copy about NgForOf (#18686) --- aio/content/guide/structural-directives.md | 5 ++++- aio/content/guide/template-syntax.md | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/aio/content/guide/structural-directives.md b/aio/content/guide/structural-directives.md index 5c3089c082..6867493134 100644 --- a/aio/content/guide/structural-directives.md +++ b/aio/content/guide/structural-directives.md @@ -304,10 +304,13 @@ which `NgFor` has initialized with the hero for the current iteration. * The [API guide](api/common/NgForOf "API: NgFor") describes additional `NgFor` directive properties and context properties. +* `NgFor` is implemented by the `NgForOf` directive. Read more about additional `NgForOf` directive properties and context properties [NgForOf API reference](api/common/NgForOf). + + These microsyntax mechanisms are available to you when you write your own structural directives. Studying the [source code for `NgIf`](https://github.com/angular/angular/blob/master/packages/common/src/directives/ng_if.ts "Source: NgIf") -and [`NgFor`](https://github.com/angular/angular/blob/master/packages/common/src/directives/ng_for_of.ts "Source: NgFor") +and [`NgForOf`](https://github.com/angular/angular/blob/master/packages/common/src/directives/ng_for_of.ts "Source: NgForOf") is a great way to learn more. diff --git a/aio/content/guide/template-syntax.md b/aio/content/guide/template-syntax.md index 9f56ff63c6..4c6c481241 100644 --- a/aio/content/guide/template-syntax.md +++ b/aio/content/guide/template-syntax.md @@ -1494,7 +1494,7 @@ The next example captures the `index` in a variable named `i` and displays it wi
-Learn about the other `NgForOf` context values such as `last`, `even`, +`NgFor` is implemented by the `NgForOf` directive. Read more about the other `NgForOf` context values such as `last`, `even`, and `odd` in the [NgForOf API reference](api/common/NgForOf).