diff options
Diffstat (limited to 'lldb/scripts/Python/interface/SBInstructionList.i')
-rw-r--r-- | lldb/scripts/Python/interface/SBInstructionList.i | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/scripts/Python/interface/SBInstructionList.i b/lldb/scripts/Python/interface/SBInstructionList.i index 9f4a1b0bd9d..32603be5cc1 100644 --- a/lldb/scripts/Python/interface/SBInstructionList.i +++ b/lldb/scripts/Python/interface/SBInstructionList.i @@ -65,7 +65,7 @@ public: return int(self.GetSize()) def __getitem__(self, key): - '''Access instructions by integer index.''' + '''Access instructions by integer index for array access or by lldb.SBAddress to find an instruction that matches a section offset address object.''' if type(key) is int: # Find an instruction by index if key < len(self): |