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> <h3>Here are your items:</h3>
<ul> <ul>
{{#each items}} {{#each items}}
<Li>{{this}}</li> <li>{{this}}</li>
{{/each}} {{/each}}
</ul> </ul>