Skip to content

Commit

Permalink
Fix syntax issues in readme
Browse files Browse the repository at this point in the history
Replace `}}` with `>`
  • Loading branch information
ntnz authored Oct 13, 2021
1 parent 6adb1c8 commit d2f8cc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ $ ember install ember-sortable
```hbs
{{! app/templates/my-route.hbs }}
<SortableGroup @model={{this.model.items}} @onChange={{this.reorderItems}} as |group|}}
<SortableGroup @model={{this.model.items}} @onChange={{this.reorderItems}} as |group|>
{{#each group.model as |modelItem|}}
<group.item @model={{modelItem}} as |item|}}
<group.item @model={{modelItem}} as |item|>
{{modelItem.name}}
<item.handle>
<span class="handle">&varr;</span>
Expand Down

0 comments on commit d2f8cc9

Please sign in to comment.