From 6dae1ad35ac974a09e725f1edafa1a77090249c5 Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Sat, 26 May 2012 23:37:24 +0100 Subject: [PATCH] Comment and whitespace tweaks --- core/modules/parsers/newwikitextparser/runrules/wikilink.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/modules/parsers/newwikitextparser/runrules/wikilink.js b/core/modules/parsers/newwikitextparser/runrules/wikilink.js index a4516168e..6f1bb0c9b 100644 --- a/core/modules/parsers/newwikitextparser/runrules/wikilink.js +++ b/core/modules/parsers/newwikitextparser/runrules/wikilink.js @@ -3,7 +3,7 @@ title: $:/core/modules/parsers/newwikitextparser/runrules/wikilink.js type: application/javascript module-type: wikitextrunrule -Wiki text run rule for wiki links +Wiki text run rule for wiki links. \*/ (function(){ @@ -29,7 +29,7 @@ textPrimitives.wikiLink = "(?:(?:" + textPrimitives.upperLetter + "+" + textPrimitives.upperLetter + "{2,}" + textPrimitives.lowerLetter + "+))"; -exports.regExpString = textPrimitives.unWikiLink+"?"+textPrimitives.wikiLink; +exports.regExpString = textPrimitives.unWikiLink + "?" + textPrimitives.wikiLink; exports.parse = function(match) { this.pos = match.index + match[0].length;