Merge pull request #27 from rbalicki2/fix-typo

Fix `li` tag in handlebars_templates example.
This commit is contained in:
Sergio Benitez 2016-12-23 11:56:35 -08:00 committed by GitHub
commit 586254d1e9
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
<h3>Here are your items:</h3>
<ul>
{{#each items}}
<Li>{{this}}</li>
<li>{{this}}</li>
{{/each}}
</ul>