We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is a mistake in the following example in section The each block helper on this page http://handlebarsjs.com/builtin_helpers.html
{{#each array as |value, key|}} {{#each child as |childValue, childKey|}} {{key}} - {{childKey}}. {{childValue}} {{/each}} {{/each}}
there should not be comma value and key block parameters, and also between childValue and childKey.
value
key
childValue
childKey
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There is a mistake in the following example in section The each block helper on this page http://handlebarsjs.com/builtin_helpers.html
{{#each array as |value, key|}} {{#each child as |childValue, childKey|}} {{key}} - {{childKey}}. {{childValue}} {{/each}} {{/each}}
there should not be comma
value
andkey
block parameters, and also betweenchildValue
andchildKey
.The text was updated successfully, but these errors were encountered: