We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c2dce9 commit 65f8980Copy full SHA for 65f8980
README.md
@@ -545,8 +545,8 @@ Template template = handlebars.compileInline("{{#blog-list blogs}}{{/blog-list}}
545
```java
546
handlebars.registerHelper("blog-list", new Helper<Blog>() {
547
public CharSequence apply(List<Blog> list, Options options) {
548
- String class = options.hash("class");
549
- assertEquals("blog-css", class);
+ String classParam = options.hash("class");
+ assertEquals("blog-css", classParam);
550
...
551
}
552
});
0 commit comments