summaryrefslogtreecommitdiff
path: root/pyparsing/helpers.py
diff options
context:
space:
mode:
authorMatt Carmody <33763384+mattcarmody@users.noreply.github.com>2020-04-03 22:13:05 +0000
committerGitHub <noreply@github.com>2020-04-03 17:13:05 -0500
commit61af31e9b4c29be7d88d5a7ff75252bc9ab55253 (patch)
tree92982e9923221ed0df2e85a89ae4af4a99ff5385 /pyparsing/helpers.py
parent7eae92192cd93aa1bf1205f4a141d89414aef937 (diff)
downloadpyparsing-git-61af31e9b4c29be7d88d5a7ff75252bc9ab55253.tar.gz
Remove deprecated space escapes from docstrings (#202)
Diffstat (limited to 'pyparsing/helpers.py')
-rw-r--r--pyparsing/helpers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyparsing/helpers.py b/pyparsing/helpers.py
index a7ca83d..d710d78 100644
--- a/pyparsing/helpers.py
+++ b/pyparsing/helpers.py
@@ -135,7 +135,7 @@ def matchPreviousExpr(expr):
def oneOf(strs, caseless=False, useRegex=True, asKeyword=False):
- """Helper to quickly define a set of alternative :class:`Literal`\ s,
+ """Helper to quickly define a set of alternative :class:`Literal` s,
and makes sure to do longest-first testing when there is a conflict,
regardless of the input order, but returns
a :class:`MatchFirst` for best performance.