Skip to content

Commit

Permalink
Alex/Ben
Browse files Browse the repository at this point in the history
  • Loading branch information
GavinJoyce committed Feb 15, 2019
1 parent bf4a81c commit c641a6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions text/0000-template.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,15 @@ The use of `{{with}}` has been deprecated, you should replace it with either `{{
Before:

```hbs
{{#with (hash name="Alex" age=5) as |person|}}
{{#with (hash name="Ben" age=4) as |person|}}
Hi {{person.name}}, you are {{person.age}} years old.
{{/with}}
```

After:

```hbs
{{#let (hash name="Alex" age=5) as |person|}}
{{#let (hash name="Ben" age=4) as |person|}}
Hi {{person.name}}, you are {{person.age}} years old.
{{/let}}
```
Expand Down

0 comments on commit c641a6f

Please sign in to comment.