summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorBrian Potchik <brian@vector35.com>2024-03-14 12:41:52 -0400
committerBrian Potchik <brian@vector35.com>2024-03-14 12:41:52 -0400
commitbf8b662124aeb1cf6e79045b3d4de3fd1cdd89a8 (patch)
treeb8ea62f676e982ff5dc8a93b7c05fb6d684a41fe /python
parentc7c14723cff22c28af6c2eca464c474dfdd55ed6 (diff)
Fix documentation for 'get_next_valid_offset'.
Diffstat (limited to 'python')
-rw-r--r--python/binaryview.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/binaryview.py b/python/binaryview.py
index 247e369a..70eef953 100644
--- a/python/binaryview.py
+++ b/python/binaryview.py
@@ -3913,9 +3913,9 @@ class BinaryView:
def get_next_valid_offset(self, addr: int) -> int:
"""
- ``get_next_valid_offset`` returns the next valid offset after ``addr``.
+ ``get_next_valid_offset`` returns the next valid offset in the BinaryView starting from the given virtual address ``addr``.
- :param int addr: a virtual address
+ :param int addr: a virtual address to start checking from.
:return: The minimum of the next valid offset in the BinaryView and the end address of the BinaryView
:rtype: int
"""