From 34a6c7cc4c8ee6bc9c2b5628a2e81ec2f971884c Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sun, 15 Jun 2014 22:20:28 -0400 Subject: [PATCH] Typo fix. --- mwparserfromhell/parser/tokenizer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mwparserfromhell/parser/tokenizer.py b/mwparserfromhell/parser/tokenizer.py index 33722fa..aa7499a 100644 --- a/mwparserfromhell/parser/tokenizer.py +++ b/mwparserfromhell/parser/tokenizer.py @@ -112,7 +112,7 @@ class Tokenizer(object): self._textbuffer = [] def _pop(self, keep_context=False): - """Pop the current stack/context/textbuffer, returing the stack. + """Pop the current stack/context/textbuffer, returning the stack. If *keep_context* is ``True``, then we will replace the underlying stack's context with the current stack's.