summaryrefslogtreecommitdiffstats
path: root/lib/handlebars/compiler.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/handlebars/compiler.js')
-rw-r--r--lib/handlebars/compiler.js4
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() {},