From 3a4288899dfc2e2d31650c53acf01226c000ef20 Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Tue, 16 Oct 2012 18:49:23 +0100 Subject: [PATCH] Correction to error message --- core/modules/macros/tiddler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/macros/tiddler.js b/core/modules/macros/tiddler.js index cff3597cf..e950f7d53 100644 --- a/core/modules/macros/tiddler.js +++ b/core/modules/macros/tiddler.js @@ -93,7 +93,7 @@ exports.executeMacro = function() { } // Check for recursion if(parents.indexOf(this.params.templateTitle) !== -1) { - renderTemplateTree = $tw.Tree.errorNode("Tiddler recursion error in <> macro"); + renderTemplateTree = $tw.Tree.errorNode("Tiddler recursion error in <> macro"); } else { parents.push(renderTemplateTitle); renderTemplateTree = [];