diff options
Diffstat (limited to 'python/binaryview.py')
| -rw-r--r-- | python/binaryview.py | 4 |
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 """ |
