From b06a99bed278c5b3dbb79062c1620a8b24d577c0 Mon Sep 17 00:00:00 2001 From: Jon Schlinkert Date: Sat, 6 Jul 2013 08:28:34 -0400 Subject: [PATCH] fix template error --- root/name.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root/name.js b/root/name.js index 3646723..59b3567 100644 --- a/root/name.js +++ b/root/name.js @@ -2,7 +2,7 @@ module.exports.register = function(Handlebars, options) { // Customize this helper - Handlebars.registerHelper('{%= helper_name %}', function(str) { + Handlebars.registerHelper('{%= name %}', function(str) { var content = '' + str + ''; return new Handlebars.SafeString(content); });