diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2020-05-14 13:27:51 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2020-05-14 13:27:51 -0400 |
| commit | 2c433e500ab45a27bd52499608a9b07d1ae83e4d (patch) | |
| tree | a9cf7ee898363b04386d907e10255bb40ba516ec /python | |
| parent | da616bc3482cbf3dd06452a9b60d953b4c316809 (diff) | |
lowlevelil documentation corrections
Diffstat (limited to 'python')
| -rw-r--r-- | python/lowlevelil.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py index 17536beb..ff68d912 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -1895,7 +1895,7 @@ class LowLevelILFunction(object): def shift_left(self, size, a, b, flags=None): """ - ``shift_left`` subtracts with borrow expression ``b`` from expression ``a`` potentially setting flags ``flags`` + ``shift_left`` shifts left expression ``a`` by expression ``b`` from expression ``a`` potentially setting flags ``flags`` and returning an expression of ``size`` bytes. :param int size: the size of the result in bytes @@ -1910,7 +1910,7 @@ class LowLevelILFunction(object): def logical_shift_right(self, size, a, b, flags=None): """ ``logical_shift_right`` shifts logically right expression ``a`` by expression ``b`` potentially setting flags - ``flags``and returning an expression of ``size`` bytes. + ``flags`` and returning an expression of ``size`` bytes. :param int size: the size of the result in bytes :param LowLevelILExpr a: LHS expression |
