summaryrefslogtreecommitdiffstats
path: root/lib/handlebars/compiler/compiler.js
diff options
context:
space:
mode:
authorAndrey Lushchick <andrew@lushchick.org>2012-12-27 14:10:23 +0200
committerAndrey Lushchick <andrew@lushchick.org>2012-12-27 14:10:23 +0200
commite9fe73d7ab71b069245ee521cbf077d85e386373 (patch)
treeaf5895c816bf51edfafc48d8e82798be0525b1d1 /lib/handlebars/compiler/compiler.js
parent28f377d169e878959619b922661a9377d3e22e97 (diff)
downloadhandlebars.js-e9fe73d7ab71b069245ee521cbf077d85e386373.zip
handlebars.js-e9fe73d7ab71b069245ee521cbf077d85e386373.tar.gz
handlebars.js-e9fe73d7ab71b069245ee521cbf077d85e386373.tar.bz2
Removed unnecessary semicolon, which is needed to pass JSHint for compiled code
Diffstat (limited to 'lib/handlebars/compiler/compiler.js')
-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]