Skip to content

Commit

Permalink
Change param to parameter
Browse files Browse the repository at this point in the history
(cherry picked from commit bbb81bb)
  • Loading branch information
Yuvaraja Balamurugan authored and rwjblue committed Jan 12, 2016
1 parent 8329403 commit 3e25db3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ember-htmlbars/lib/helpers/each.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import decodeEachKey from 'ember-htmlbars/utils/decode-each-key';
of the base Handlebars `{{#each}}` helper.
The default behavior of `{{#each}}` is to yield its inner block once for every
item in an array passing the item as the first param to the block.
item in an array passing the item as the first block parameter.
```javascript
var developers = [{name: 'Yehuda'},{name: 'Tom'}, {name: 'Paul'}];
Expand All @@ -36,7 +36,7 @@ import decodeEachKey from 'ember-htmlbars/utils/decode-each-key';
{{/each}}
```
During iteration, the index of each item in the array is provided as a second block param.
During iteration, the index of each item in the array is provided as a second block parameter.
```handlebars
<ul>
Expand Down

0 comments on commit 3e25db3

Please sign in to comment.