From 41450c3df2be33b817c864fb71ca38d76d81d2ab Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Sun, 6 Apr 2025 09:53:29 -0400 Subject: fix get_llils?_at documentation --- python/function.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'python/function.py') diff --git a/python/function.py b/python/function.py index cf510b59..dc6cdc7e 100644 --- a/python/function.py +++ b/python/function.py @@ -1815,7 +1815,7 @@ class Function: """ ``get_llil_at`` gets the LowLevelILInstruction corresponding to the given virtual address - :param int addr: virtual address of the function to be queried + :param int addr: virtual address of the instruction to be queried :param Architecture arch: (optional) Architecture for the given function :rtype: LowLevelILInstruction :Example: @@ -1830,8 +1830,9 @@ class Function: arch: Optional['architecture.Architecture'] = None) -> List['lowlevelil.LowLevelILInstruction']: """ ``get_llils_at`` gets the LowLevelILInstruction(s) corresponding to the given virtual address + See the developer docs `_ for more information. - :param int addr: virtual address of the function to be queried + :param int addr: virtual address of the instruction to be queried :param Architecture arch: (optional) Architecture for the given function :rtype: list(LowLevelILInstruction) :Example: -- cgit v1.3.1