From 2c433e500ab45a27bd52499608a9b07d1ae83e4d Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Thu, 14 May 2020 13:27:51 -0400 Subject: lowlevelil documentation corrections --- python/lowlevelil.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python') 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 -- cgit v1.3.1