diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2025-04-06 09:53:29 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2025-04-06 09:53:29 -0400 |
| commit | 41450c3df2be33b817c864fb71ca38d76d81d2ab (patch) | |
| tree | 0bda98395361842e21b97bb2efcd90a77f722d0a /python | |
| parent | ad4d6dba1947d7b9f66662b898e1626667636b5f (diff) | |
fix get_llils?_at documentation
Diffstat (limited to 'python')
| -rw-r--r-- | python/function.py | 5 |
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: |
