summaryrefslogtreecommitdiff
path: root/python/workflow.py
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2024-08-04 22:20:42 -0400
committerJordan Wiens <jordan@psifertex.com>2024-08-04 22:20:42 -0400
commit942d1cd1c0517e7a73a0a6f3d0102b25b967e40e (patch)
treec82f4f80af1561999fef503d4c919174b0ea1758 /python/workflow.py
parent8b3c5bc8ea70b837dd7fff17e79a60c3612169d9 (diff)
spellcheck pass on pydocs
Diffstat (limited to 'python/workflow.py')
-rw-r--r--python/workflow.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/python/workflow.py b/python/workflow.py
index 0ed013ab..f5c34238 100644
--- a/python/workflow.py
+++ b/python/workflow.py
@@ -72,7 +72,7 @@ class AnalysisContext:
@property
def llil(self) -> lowlevelil.LowLevelILFunction:
"""
- LowLevelILFunction used to represent Low Level IL (writeable)
+ LowLevelILFunction used to represent Low Level IL (writable)
"""
result = core.BNAnalysisContextGetLowLevelILFunction(self.handle)
if not result:
@@ -86,7 +86,7 @@ class AnalysisContext:
@property
def mlil(self) -> mediumlevelil.MediumLevelILFunction:
"""
- MediumLevelILFunction used to represent Medium Level IL (writeable)
+ MediumLevelILFunction used to represent Medium Level IL (writable)
"""
result = core.BNAnalysisContextGetMediumLevelILFunction(self.handle)
if not result:
@@ -100,7 +100,7 @@ class AnalysisContext:
@property
def hlil(self) -> highlevelil.HighLevelILFunction:
"""
- HighLevelILFunction used to represent High Level IL (writeable)
+ HighLevelILFunction used to represent High Level IL (writable)
"""
result = core.BNAnalysisContextGetHighLevelILFunction(self.handle)
if not result:
@@ -114,7 +114,7 @@ class AnalysisContext:
@property
def basic_blocks(self) -> '_function.BasicBlockList':
"""
- function.BasicBlockList of BasicBlocks in the current function (writeable)
+ function.BasicBlockList of BasicBlocks in the current function (writable)
"""
return _function.BasicBlockList(self.function)