docs: Fix syntax in interpolation example (#40554)

Correcting a typo in the example.
PR Close #40554
This commit is contained in:
Justin Santa Barbara 2021-01-25 08:57:56 -05:00 committed by Jessica Janiuk
parent fc64fa8e1a
commit a78493ffd7
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ import { Component } from '@angular/core';
<h1>Hello, {{customer}}</h1> <h1>Hello, {{customer}}</h1>
<ul> <ul>
<!-- Ebony and Chiho in a list--> <!-- Ebony and Chiho in a list-->
<li *ngFor="let customer of customers"{{ customer.value }}></li> <li *ngFor="let customer of customers">{{ customer.value }}</li>
</ul> </ul>
</div> </div>
` `