diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2017-03-19 01:19:38 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2017-03-19 01:19:38 -0400 |
| commit | b049ec1662df13d409d149d937fa3366c33b32a1 (patch) | |
| tree | d3d9820d1722f2e20b2b5de2bd6d99a4632e5363 /python/function.py | |
| parent | 15bbf9f7b2f9067159469c9c9bdb4183b25bc9c6 (diff) | |
change types in documentation for lowlevelil so the results will be clickable, resolves #583
Diffstat (limited to 'python/function.py')
| -rw-r--r-- | python/function.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/function.py b/python/function.py index 86c93bf7..e1c202f9 100644 --- a/python/function.py +++ b/python/function.py @@ -289,12 +289,12 @@ class Function(object): @property def low_level_il(self): - """Function low level IL (read-only)""" + """returns LowLevelILFunction used to represent Function low level IL (read-only)""" return lowlevelil.LowLevelILFunction(self.arch, core.BNGetFunctionLowLevelIL(self.handle), self) @property def lifted_il(self): - """Function lifted IL (read-only)""" + """returns LowLevelILFunction used to represent lifted IL (read-only)""" return lowlevelil.LowLevelILFunction(self.arch, core.BNGetFunctionLiftedIL(self.handle), self) @property |
