diff --git a/packages/ember-htmlbars/lib/helpers/each.js b/packages/ember-htmlbars/lib/helpers/each.js index 816d6565205..77ecf6555cd 100644 --- a/packages/ember-htmlbars/lib/helpers/each.js +++ b/packages/ember-htmlbars/lib/helpers/each.js @@ -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'}]; @@ -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