summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/basicblock.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/basicblock.py b/python/basicblock.py
index 5bcf6aff..58eb863f 100644
--- a/python/basicblock.py
+++ b/python/basicblock.py
@@ -151,7 +151,7 @@ class BasicBlock(object):
def __iter__(self):
if self._instStarts is None:
- # don't and instruction start cache the object is likely ephemeral
+ # don't add instruction start cache--the object is likely ephemeral
idx = self.start
while idx < self.end:
data = self._view.read(idx, min(self.arch.max_instr_length, self.end - idx))