From cd259bd9f643a76eca754f68f0076e58bd06a568 Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Fri, 9 Jun 2023 14:38:03 -0400 Subject: fix documentation for callee_addresses fixes #4356 --- python/function.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/function.py') diff --git a/python/function.py b/python/function.py index e356af65..42e5ea44 100644 --- a/python/function.py +++ b/python/function.py @@ -3196,10 +3196,10 @@ class Function: @property def callee_addresses(self) -> List[int]: """ - ``callee_addressses`` returns a list of start addresses for functions that call this function. + ``callee_addressses`` returns a list of start addresses for functions that this function calls. Does not point to the actual address where the call occurs, just the start of the function that contains the reference. - :return: List of start addresess for Functions that call this function + :return: List of start address for functions that this function calls :rtype: list(int) """ result = [] -- cgit v1.3.1