Skip to content

Commit

Permalink
Merge pull request #38 from jelhan/fix-confusing-usage-example
Browse files Browse the repository at this point in the history
update confusing usage example in readme
  • Loading branch information
rwjblue authored Aug 31, 2018
2 parents b2523bb + 5916976 commit f8eef14
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 @@ -36,9 +36,9 @@ but here are a few examples of "before"/"after" to whet your appetite:
```hbs
<SiteHeader @user={{this.user}} class={{if this.user.isAdmin "admin"}} />
<SuperSelect @selected={{this.user.country}} as |Option|>
<SuperSelect @selected={{this.user.country}} as |s|>
{{#each this.availableCountries as |country|}}
<Option @value={{country}}>{{country.name}}</Option>
<s.option @value={{country}}>{{country.name}}</s.option>
{{/each}}
</SuperSelect>
```
Expand Down

0 comments on commit f8eef14

Please sign in to comment.