summaryrefslogtreecommitdiff
path: root/src/pyparsing.py
diff options
context:
space:
mode:
authorPaul McGuire <ptmcg@austin.rr.com>2016-08-07 06:26:46 +0000
committerPaul McGuire <ptmcg@austin.rr.com>2016-08-07 06:26:46 +0000
commit2baa20ba0ec08f4a074fe3f028932523dfa237cd (patch)
tree902f2ea408f035c79f56bb961c19706c6c2ce0a2 /src/pyparsing.py
parente49260f194401a26769f293bdf898f7df2ff22bb (diff)
downloadpyparsing-git-2baa20ba0ec08f4a074fe3f028932523dfa237cd.tar.gz
Typo in Keyword docstring
Diffstat (limited to 'src/pyparsing.py')
-rw-r--r--src/pyparsing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pyparsing.py b/src/pyparsing.py
index 0d982e5..6a3f582 100644
--- a/src/pyparsing.py
+++ b/src/pyparsing.py
@@ -2345,7 +2345,7 @@ class Keyword(Token):
Example::
Keyword("start").parseString("start") # -> ['start']
- Keyword("start").parseStrign("starting") # -> Exception
+ Keyword("start").parseString("starting") # -> Exception
For case-insensitive matching, use L{CaselessKeyword}.
"""