summaryrefslogtreecommitdiffstats
path: root/lib/handlebars/compiler
diff options
context:
space:
mode:
authorKevin Decker <kpdecker@gmail.com>2013-01-13 14:01:46 -0800
committerKevin Decker <kpdecker@gmail.com>2013-01-13 14:01:46 -0800
commit16f2bf8f9b127f51b86d3ab735c5717dbdb0f32d (patch)
tree8f6be34acfe2c3dbbabf3f235e22368ac1a56c19 /lib/handlebars/compiler
parent76882ff75ad4cc4b8c740a63b783444b55ddfa0b (diff)
parente9fe73d7ab71b069245ee521cbf077d85e386373 (diff)
downloadhandlebars.js-16f2bf8f9b127f51b86d3ab735c5717dbdb0f32d.zip
handlebars.js-16f2bf8f9b127f51b86d3ab735c5717dbdb0f32d.tar.gz
handlebars.js-16f2bf8f9b127f51b86d3ab735c5717dbdb0f32d.tar.bz2
Merge pull request #400 from lushchick/master
Removed unnecessary semicolon to pass JSHint for compiled code
Diffstat (limited to 'lib/handlebars/compiler')
-rw-r--r--lib/handlebars/compiler/compiler.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/handlebars/compiler/compiler.js b/lib/handlebars/compiler/compiler.js
index 297a553..64ae959 100644
--- a/lib/handlebars/compiler/compiler.js
+++ b/lib/handlebars/compiler/compiler.js
@@ -805,7 +805,7 @@ Handlebars.JavaScriptCompiler = function() {};
}
this.context.aliases.self = "this";
- this.pushStack("self.invokePartial(" + params.join(", ") + ");");
+ this.pushStack("self.invokePartial(" + params.join(", ") + ")");
},
// [assignToHash]