summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2023-06-09 14:38:03 -0400
committerPeter LaFosse <peter@vector35.com>2023-06-09 14:38:03 -0400
commitcd259bd9f643a76eca754f68f0076e58bd06a568 (patch)
tree27ea5537c7d341329741f967ce18f063d437b4a6
parent9e56cf7d4798d8c5014407c3a4caf9579465f004 (diff)
fix documentation for callee_addresses fixes #4356
-rw-r--r--python/function.py4
1 files changed, 2 insertions, 2 deletions
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 = []