diff options
author | Andrey Lushchick <andrew@lushchick.org> | 2012-12-27 14:10:23 +0200 |
---|---|---|
committer | Andrey Lushchick <andrew@lushchick.org> | 2012-12-27 14:10:23 +0200 |
commit | e9fe73d7ab71b069245ee521cbf077d85e386373 (patch) | |
tree | af5895c816bf51edfafc48d8e82798be0525b1d1 /lib/handlebars/compiler/compiler.js | |
parent | 28f377d169e878959619b922661a9377d3e22e97 (diff) | |
download | handlebars.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.js | 2 |
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] |