From ea13652a647d14bc2540fc48de21de65b57ea28f Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Sat, 29 Dec 2012 23:16:34 +0000 Subject: [PATCH] Fixed subtle little typo --- core/modules/parsers/wikiparser/rules/styleblock.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/parsers/wikiparser/rules/styleblock.js b/core/modules/parsers/wikiparser/rules/styleblock.js index 40a6782aa..3fcad5bb4 100644 --- a/core/modules/parsers/wikiparser/rules/styleblock.js +++ b/core/modules/parsers/wikiparser/rules/styleblock.js @@ -56,7 +56,7 @@ exports.parse = function() { this.parser.pos = this.matchRegExp.lastIndex; // Look for another line of classes and styles this.match = this.matchRegExp.exec(this.parser.source); - } while(this.match && this.match.index === this.parse.pos); + } while(this.match && this.match.index === this.parser.pos); // Parse the body var tree = this.parser.parseBlocks(reEndString); for(var t=0; t