summaryrefslogtreecommitdiff
path: root/python/lowlevelil.py
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2019-09-14 01:06:50 -0400
committerJordan Wiens <jordan@psifertex.com>2019-09-14 01:06:50 -0400
commit4d9138e3ef76ce300f054a8cb07b1a2327b35a83 (patch)
tree9e861d3ab7c5f498529bf7f5a830bd9991ae6a55 /python/lowlevelil.py
parentbfb25cec540d6b621273e1a726e4866c398d4868 (diff)
lots of small documentation updates, mostly around making sure parameters are consistent and typed properly
Diffstat (limited to 'python/lowlevelil.py')
-rw-r--r--python/lowlevelil.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py
index b2379164..20266556 100644
--- a/python/lowlevelil.py
+++ b/python/lowlevelil.py
@@ -2667,7 +2667,8 @@ class LowLevelILFunction(object):
"""
``add_label_list`` returns a label list expression for the given list of LowLevelILLabel objects.
- :param list(LowLevelILLabel) lables: the list of LowLevelILLabel to get a label list expression from
+ :param labels: the list of LowLevelILLabel to get a label list expression from
+ :type labels: list(LowLevelILLabel)
:return: the label list expression
:rtype: LowLevelILExpr
"""
@@ -2680,7 +2681,8 @@ class LowLevelILFunction(object):
"""
``add_operand_list`` returns an operand list expression for the given list of integer operands.
- :param list(int) operands: list of operand numbers
+ :param operands: list of operand numbers
+ :type operands: list(int)
:return: an operand list expression
:rtype: LowLevelILExpr
"""