From 0f1fca75d84fb676d53781705f66f9392f8c043c Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Wed, 28 Aug 2013 17:55:17 -0400 Subject: [PATCH] Typo fix. --- mwparserfromhell/wikicode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mwparserfromhell/wikicode.py b/mwparserfromhell/wikicode.py index c3249d9..08fd469 100644 --- a/mwparserfromhell/wikicode.py +++ b/mwparserfromhell/wikicode.py @@ -409,7 +409,7 @@ class Wikicode(StringMixIn): Each section contains all of its subsections. If *levels* is given, it should be a iterable of integers; only sections whose heading levels - are within it will be returned.If *matches* is given, it should be a + are within it will be returned. If *matches* is given, it should be a regex to be matched against the titles of section headings; only sections whose headings match the regex will be included. *flags* can be used to override the default regex flags (see :py:meth:`ifilter`) if