Browse Source

.Text -> .nodes.Text, since .Text can also be .tokens.Text.

tags/v0.1
Ben Kurtovic 11 years ago
parent
commit
777dd7a945
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mwparserfromhell/wikicode.py

+ 1
- 1
mwparserfromhell/wikicode.py View File

@@ -314,7 +314,7 @@ class Wikicode(StringMixIn):
"""Iterate over text nodes. """Iterate over text nodes.


This is equivalent to :py:meth:`ifilter` with *forcetype* set to This is equivalent to :py:meth:`ifilter` with *forcetype* set to
:py:class:`~.Text`.
:py:class:`~.nodes.Text`.
""" """
return self.filter(recursive, matches, flags, forcetype=Text) return self.filter(recursive, matches, flags, forcetype=Text)




Loading…
Cancel
Save