diff options
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 3ea536b..639e7f2 100644 --- a/lib/handlebars/compiler/compiler.js +++ b/lib/handlebars/compiler/compiler.js @@ -307,7 +307,7 @@ Handlebars.JavaScriptCompiler = function() {}; }, appendToBuffer: function(string) { - return "buffer = buffer + " + string + ";"; + return "buffer += " + string + ";"; }, initializeBuffer: function() { |