summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/function.py5
1 files changed, 3 insertions, 2 deletions
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 <https://dev-docs.binary.ninja/dev/concepts.html#mapping-between-ils>`_ 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: