docs: add ending slash to input in TOH pt1 and pt2 examples (#29176)

PR Close #29176
This commit is contained in:
Patrick Roche 2019-03-07 18:47:27 -05:00 committed by Kara Erickson
parent a68b1a1894
commit d4728c40d9
3 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@
<!-- #docregion name-input -->
<div>
<label>name:
<input [(ngModel)]="hero.name" placeholder="name">
<input [(ngModel)]="hero.name" placeholder="name"/>
</label>
</div>
<!-- #enddocregion name-input -->

View File

@ -5,6 +5,6 @@
<div><span>id: </span>{{hero.id}}</div>
<div>
<label>name:
<input [(ngModel)]="hero.name" placeholder="name">
<input [(ngModel)]="hero.name" placeholder="name"/>
</label>
</div>

View File

@ -18,7 +18,7 @@
<div><span>id: </span>{{selectedHero.id}}</div>
<div>
<label>name:
<input [(ngModel)]="selectedHero.name" placeholder="name">
<input [(ngModel)]="selectedHero.name" placeholder="name"/>
</label>
</div>
<!-- #enddocregion selectedHero-details -->