From e9fe73d7ab71b069245ee521cbf077d85e386373 Mon Sep 17 00:00:00 2001 From: Andrey Lushchick Date: Thu, 27 Dec 2012 14:10:23 +0200 Subject: [PATCH] Removed unnecessary semicolon, which is needed to pass JSHint for compiled code --- lib/handlebars/compiler/compiler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/handlebars/compiler/compiler.js b/lib/handlebars/compiler/compiler.js index 297a5534..64ae959f 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]