summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/highlevelil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/highlevelil.py b/python/highlevelil.py
index c80354b7..942330bf 100644
--- a/python/highlevelil.py
+++ b/python/highlevelil.py
@@ -368,7 +368,7 @@ class HighLevelILInstruction(BaseILInstruction):
@property
def tokens(self) -> TokenList:
- """HLIL tokens taken from the HLIL text lines(read-only)"""
+ """HLIL tokens taken from the HLIL text lines (read-only) -- does not include newlines or indentation, use lines for that information"""
return [token for line in self.lines for token in line.tokens]
@property