summaryrefslogtreecommitdiff
path: root/python/function.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/function.py
parent8b3c5bc8ea70b837dd7fff17e79a60c3612169d9 (diff)
spellcheck pass on pydocs
Diffstat (limited to 'python/function.py')
-rw-r--r--python/function.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/function.py b/python/function.py
index 0b8abc1f..5ed61603 100644
--- a/python/function.py
+++ b/python/function.py
@@ -3127,7 +3127,7 @@ class Function:
self, target: 'variable.Variable', sources: Union[List['variable.Variable'], 'variable.Variable']
) -> None:
"""
- ``merge_vars`` merges one or more varibles in ``sources`` into the ``target`` variable. All
+ ``merge_vars`` merges one or more variables in ``sources`` into the ``target`` variable. All
variable accesses to the variables in ``sources`` will be rewritten to use ``target``.
:param Variable target: target variable
@@ -3163,7 +3163,7 @@ class Function:
def split_var(self, var: 'variable.Variable') -> None:
"""
- ``split_var`` splits a varible at the definition site. The given ``var`` must be the
+ ``split_var`` splits a variable at the definition site. The given ``var`` must be the
variable unique to the definition and should be obtained by using
``MediumLevelILInstruction.get_split_var_for_definition`` at the definition site.
@@ -3182,7 +3182,7 @@ class Function:
def unsplit_var(self, var: 'variable.Variable') -> None:
"""
- ``unsplit_var`` undoes varible splitting performed with ``split_var``. The given ``var``
+ ``unsplit_var`` undoes variable splitting performed with ``split_var``. The given ``var``
must be the variable unique to the definition and should be obtained by using
``MediumLevelILInstruction.get_split_var_for_definition`` at the definition site.