diff options
Diffstat (limited to 'miasm2/ir/symbexec.py')
| -rw-r--r-- | miasm2/ir/symbexec.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm2/ir/symbexec.py b/miasm2/ir/symbexec.py index 052736ee..a1ffebf5 100644 --- a/miasm2/ir/symbexec.py +++ b/miasm2/ir/symbexec.py @@ -81,7 +81,7 @@ class SymbolicState(StateEngine): @property def symbols(self): - """Return the dictionnary of known symbols""" + """Return the dictionary of known symbols""" return dict(self._symbols) @@ -945,7 +945,7 @@ class SymbolicExecutionEngine(object): def eval_expr(self, expr, eval_cache=None): """ Evaluate @expr - @expr: Expresion instance to evaluate + @expr: Expression instance to evaluate @cache: None or dictionary linking variables to their values """ if eval_cache is None: |