diff options
author | luzpaz <luzpaz@users.noreply.github.com> | 2021-05-14 11:32:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-14 10:32:47 -0500 |
commit | 5353ccdd7026a7eeaa77029102f8c0043553ebd3 (patch) | |
tree | afabf8efc9e0036e1a6903479cac8d7faaf23724 /examples/simpleArith.py | |
parent | d27fd7627f3ed60b3b7a9e9f5e790d0e49107359 (diff) | |
download | pyparsing-git-5353ccdd7026a7eeaa77029102f8c0043553ebd3.tar.gz |
Fix misc. documentation typos (#280)
Found via `codespell -q 3 -L ba,fourty,halp,inout,strng`
Diffstat (limited to 'examples/simpleArith.py')
-rw-r--r-- | examples/simpleArith.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/simpleArith.py b/examples/simpleArith.py index 476cb8b..99b7ce1 100644 --- a/examples/simpleArith.py +++ b/examples/simpleArith.py @@ -30,7 +30,7 @@ factop = Literal("!") # and integer or a variable. This will be the first argument
# to the infixNotation method.
# 2. Define a list of tuples for each level of operator
-# precendence. Each tuple is of the form
+# precedence. Each tuple is of the form
# (opExpr, numTerms, rightLeftAssoc, parseAction), where
# - opExpr is the pyparsing expression for the operator;
# may also be a string, which will be converted to a Literal
|