diff --git a/aio/content/examples/content-projection/src/app/app.component.html b/aio/content/examples/content-projection/src/app/app.component.html index 69c7744eab..9037afedf3 100644 --- a/aio/content/examples/content-projection/src/app/app.component.html +++ b/aio/content/examples/content-projection/src/app/app.component.html @@ -34,7 +34,7 @@

Let's learn about content projection!

- +

Is content projection cool?

diff --git a/aio/content/examples/content-projection/src/app/zippy-multislot/zippy-multislot.component.ts b/aio/content/examples/content-projection/src/app/zippy-multislot/zippy-multislot.component.ts index 243a53d6d8..471be4ffad 100644 --- a/aio/content/examples/content-projection/src/app/zippy-multislot/zippy-multislot.component.ts +++ b/aio/content/examples/content-projection/src/app/zippy-multislot/zippy-multislot.component.ts @@ -4,7 +4,9 @@ import { Component } from '@angular/core'; selector: 'app-zippy-multislot', template: `

Multi-slot content projection

+ Default: + Question: ` }) diff --git a/aio/content/examples/content-projection/src/app/zippy-ngprojectas/zippy-ngprojectas.component.ts b/aio/content/examples/content-projection/src/app/zippy-ngprojectas/zippy-ngprojectas.component.ts index 39a06914bf..6a4aaf87b9 100644 --- a/aio/content/examples/content-projection/src/app/zippy-ngprojectas/zippy-ngprojectas.component.ts +++ b/aio/content/examples/content-projection/src/app/zippy-ngprojectas/zippy-ngprojectas.component.ts @@ -4,7 +4,9 @@ import { Component } from '@angular/core'; selector: 'app-zippy-ngprojectas', template: `

Content projection with ngProjectAs

+ Default: + Question: ` }) diff --git a/aio/content/guide/content-projection.md b/aio/content/guide/content-projection.md index a663c5951d..a98cdc312a 100644 --- a/aio/content/guide/content-projection.md +++ b/aio/content/guide/content-projection.md @@ -154,4 +154,4 @@ The `ng-container` element is a logical construct that you can use to group othe -In this example, the content we want to project resides inside another element. To project this content as intended, the template uses the `ngProjectAs` attribute. With `ngProjectAs`, the entire `ng-container` element is projected into a component using the `question` selector. +In this example, the content we want to project resides inside another element. To project this content as intended, the template uses the `ngProjectAs` attribute. With `ngProjectAs`, the entire `ng-container` element is projected into a component using the `[question]` selector.