From ac45b1a835d23b4ca5ffe2554b85878e436e03c9 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Thu, 11 Jun 2020 18:57:28 -0400 Subject: fix for fixed comment --- python/basicblock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/basicblock.py') 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)) -- cgit v1.3.1