summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2022-06-16 18:55:45 -0400
committerJordan Wiens <jordan@psifertex.com>2022-06-16 18:55:45 -0400
commit9920cd48014c17104fef3635fa1d363445a111ac (patch)
treefb5f392189137fc9a4311bfa632613b65b832582
parent30d84ee263fea44a7fa686d86d1934e4782f8aaa (diff)
update documentation on HLIL tokens
-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