Fix missing whitespaces in error message

This commit is contained in:
wycats
2010-12-21 09:39:05 -08:00
parent 8f502ffbe7
commit 355565bb04
+1 -1
View File
@@ -30,7 +30,7 @@ Handlebars.Exception = require("handlebars/utils").Exception;
var verifyMatch = function(open, close) {
if(open.original !== close.original) {
throw new Handlebars.Exception(open.original + "doesn't match" + close.original);
throw new Handlebars.Exception(open.original + " doesn't match " + close.original);
}
};