docs: display the beginning label in interpolation guide example (#28602)

Updating the doc to add the beginning label.

I'm not sure if this was the way it was intended, but it looked strange with just an ending </label> tag.

PR Close #28602
This commit is contained in:
Jamie R. Rytlewski 2019-02-07 14:33:50 -05:00 committed by Igor Minar
parent 0cc5804169
commit a17fd43fd5
1 changed files with 3 additions and 2 deletions

View File

@ -50,9 +50,10 @@
<div (keyup)="0">
<h4>Template context: template reference variables (#customerInput):</h4>
<label>Type something:
<!-- #docregion template-reference-variable -->
<input #customerInput>{{customerInput.value}}</label>
<label>Type something:
<input #customerInput>{{customerInput.value}}
</label>
<!-- #enddocregion template-reference-variable -->
</div>