Skip to content

Commit ae68df7

Browse files
JeanMecheAndrewKushnir
authored andcommitted
docs: fix dynamic template tutorial (angular#59234)
fixes angular#59228 PR Close angular#59234
1 parent 22aacba commit ae68df7

File tree

1 file changed

+4
-4
lines changed
  • adev/src/content/tutorials/first-app/steps/07-dynamic-template-values

1 file changed

+4
-4
lines changed

adev/src/content/tutorials/first-app/steps/07-dynamic-template-values/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ In the code editor:
2727
1. Navigate to `src/app/housing-location/housing-location.component.ts`
2828
1. In the template property of the `@Component` decorator, replace the existing HTML markup with the following code:
2929

30-
<docs-code header="Update HousingLocationComponent template" path="adev/src/content/tutorials/first-app/steps/08-ngFor/src/app/housing-location/housing-location.component.ts" visibleLines="[9,20]"/>
30+
<docs-code header="Update HousingLocationComponent template" path="adev/src/content/tutorials/first-app/steps/08-ngFor/src/app/housing-location/housing-location.component.ts" visibleLines="[9,20]"/>
3131

32-
In this updated template code you have used property binding to bind the `housingLocation.photo` to the `src` attribute. The `alt` attribute uses interpolation to give more context to the alt text of the image.
32+
In this updated template code you have used property binding to bind the `housingLocation.photo` to the `src` attribute. The `alt` attribute uses interpolation to give more context to the alt text of the image.
3333

34-
You use interpolation to include the values for `name`, `city` and `state` of the `housingLocation` property.
34+
You use interpolation to include the values for `name`, `city` and `state` of the `housingLocation` property.
3535

36-
</docs-step>
36+
</docs-step>
3737

3838
<docs-step title="Confirm the changes render in the browser">
3939
1. Save all changes.

0 commit comments

Comments
 (0)