diff options
Diffstat (limited to 'lib/handlebars/compiler.js')
-rw-r--r-- | lib/handlebars/compiler.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/handlebars/compiler.js b/lib/handlebars/compiler.js index 4d74d14..6f52482 100644 --- a/lib/handlebars/compiler.js +++ b/lib/handlebars/compiler.js @@ -229,7 +229,7 @@ Handlebars.JavaScriptCompiler = function() {}; }, BOOLEAN: function(bool) { - this.opcode('push', bool.boolean); + this.opcode('push', bool.bool); }, comment: function() {}, |