summaryrefslogtreecommitdiff
path: root/python/mediumlevelil.py
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2019-01-03 15:33:39 -0500
committerJordan Wiens <jordan@psifertex.com>2019-01-03 15:33:39 -0500
commit34b04f487e0dfcdc8766cb265e10dd3f58217f30 (patch)
tree6ccc49becfb5802bf982c9dc9978631283bc6c57 /python/mediumlevelil.py
parentac204fce33045803f27b438a2ffd3930d96fc52b (diff)
lots of spelling / typo fixes
Diffstat (limited to 'python/mediumlevelil.py')
-rw-r--r--python/mediumlevelil.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py
index 2dae008a..6345038c 100644
--- a/python/mediumlevelil.py
+++ b/python/mediumlevelil.py
@@ -787,7 +787,7 @@ class MediumLevelILFunction(object):
"""
``add_label_list`` returns a label list expression for the given list of MediumLevelILLabel objects.
- :param list(MediumLevelILLabel) lables: the list of MediumLevelILLabel to get a label list expression from
+ :param list(MediumLevelILLabel) labels: the list of MediumLevelILLabel to get a label list expression from
:return: the label list expression
:rtype: MediumLevelILExpr
"""
@@ -973,7 +973,7 @@ class MediumLevelILBasicBlock(basicblock.BasicBlock):
return self.il_function[self.end + idx]
def _create_instance(self, view, handle):
- """Internal method by super to instantiante child instances"""
+ """Internal method by super to instantiate child instances"""
return MediumLevelILBasicBlock(view, handle, self.il_function)
def __hash__(self):