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