diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2020-12-26 11:42:16 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-26 11:42:16 +0100 |
| commit | b7c2b25f0d9d3a15a663dda8bd40f55d3bcd8a03 (patch) | |
| tree | 33b140d954d0f7024f372fe5a7a18023dec8fa3a | |
| parent | 1673c3eb29d88cbd7b642419c197fa0993ca5871 (diff) | |
| parent | d801ea14f8f46a47df063fd302029bd5d31e9c70 (diff) | |
| download | miasm-b7c2b25f0d9d3a15a663dda8bd40f55d3bcd8a03.tar.gz miasm-b7c2b25f0d9d3a15a663dda8bd40f55d3bcd8a03.zip | |
Merge pull request #1337 from timgates42/bugfix_typo_corresponding
docs: fix simple typo, corresponoding -> corresponding
| -rw-r--r-- | miasm/expression/parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm/expression/parser.py b/miasm/expression/parser.py index 20113eab..66b6fc6d 100644 --- a/miasm/expression/parser.py +++ b/miasm/expression/parser.py @@ -73,7 +73,7 @@ expr_aff.setParseAction(lambda t: ExprAssign(*t)) def str_to_expr(str_in): - """Parse the @str_in and return the corresponoding Expression + """Parse the @str_in and return the corresponding Expression @str_in: repr string of an Expression""" try: |