Skip to content

Commit

Permalink
Merge pull request #32 from olegantonyan/fix_each
Browse files Browse the repository at this point in the history
Change each .. in .. to each .. as |..|
  • Loading branch information
machty committed Nov 14, 2016
2 parents a015052 + 0cb183d commit 898413f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/syntax.yml
Expand Up @@ -220,7 +220,7 @@
emblem: |
ul
each person in people
each people as |person|
li = person
link-to "home" | Link Text
Expand All @@ -238,7 +238,7 @@
html: |
<ul>
{{#each person in people}}
{{#each people as |person|}}
<li>{{person}}</li>
{{/each}}
</ul>
Expand Down

0 comments on commit 898413f

Please sign in to comment.