summaryrefslogtreecommitdiff
path: root/python/workflow.py
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2025-07-02 17:08:06 -0400
committerJordan Wiens <jordan@psifertex.com>2025-07-02 17:09:26 -0400
commitec0d4308171b4fd67242e084eceede31c33a9d08 (patch)
tree3de2b49cc81015a9bc4896a3e714959849f725c6 /python/workflow.py
parent3e8291d2bfc75af0edf862808dd9849c72d27095 (diff)
must escape newlines in long parameter descriptions
Diffstat (limited to 'python/workflow.py')
-rw-r--r--python/workflow.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/workflow.py b/python/workflow.py
index bf48e5d8..6e4c6730 100644
--- a/python/workflow.py
+++ b/python/workflow.py
@@ -124,10 +124,10 @@ class AnalysisContext:
Set the Medium Level IL function in the current analysis, giving updated
Low Level IL (SSA) to Medium Level IL instruction and expression mappings.
:param new_func: New MLIL function
- :param llil_ssa_to_mlil_instr_map: Mapping from every LLIL SSA instruction to
+ :param llil_ssa_to_mlil_instr_map: Mapping from every LLIL SSA instruction to \
every MLIL instruction
- :param llil_ssa_to_mlil_expr_map: Mapping from every LLIL SSA expression to
- one or more MLIL expressions (first expression
+ :param llil_ssa_to_mlil_expr_map: Mapping from every LLIL SSA expression to \
+ one or more MLIL expressions (first expression \
will be the primary)
"""
if llil_ssa_to_mlil_instr_map is None or llil_ssa_to_mlil_expr_map is None: