summaryrefslogtreecommitdiff
path: root/python/function.py
diff options
context:
space:
mode:
authorGalen Williamson <galen@vector35.com>2022-08-18 19:06:38 -0400
committerGalen Williamson <galen@vector35.com>2022-08-18 19:48:35 -0400
commite2107c90ab2cfbf1c4910af976a906149ff13693 (patch)
tree688231429e0f524d94ccf809a80caddcbd9609bf /python/function.py
parent6b55b281854a64e963ae33b4d5dc92b500bfb1a8 (diff)
fix typos in various doc strings (a/an, repeated words) (skip-ci)
Diffstat (limited to 'python/function.py')
-rw-r--r--python/function.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/python/function.py b/python/function.py
index d2855234..06a9beb5 100644
--- a/python/function.py
+++ b/python/function.py
@@ -656,7 +656,7 @@ class Function:
"""
``add_user_address_tag`` adds an already-created Tag object at a given address.
Since this adds a user tag, it will be added to the current undo buffer.
- If you want want to create the tag as well, consider using
+ If you want to create the tag as well, consider using
:meth:`create_user_address_tag <function.Function.create_user_address_tag>`
:param int addr: Address at which to add the tag
@@ -721,7 +721,7 @@ class Function:
) -> None:
"""
``add_auto_address_tag`` adds an already-created Tag object at a given address.
- If you want want to create the tag as well, consider using
+ If you want to create the tag as well, consider using
:meth:`create_auto_address_tag <function.Function.create_auto_address_tag>`
:param int addr: Address at which to add the tag
@@ -784,7 +784,7 @@ class Function:
"""
``add_user_function_tag`` adds an already-created Tag object as a function tag.
Since this adds a user tag, it will be added to the current undo buffer.
- If you want want to create the tag as well, consider using
+ If you want to create the tag as well, consider using
:meth:`create_user_function_tag <function.Function.create_user_function_tag>`
:param Tag tag: Tag object to be added
@@ -825,7 +825,7 @@ class Function:
def add_auto_function_tag(self, tag: 'binaryview.Tag') -> None:
"""
``add_auto_function_tag`` adds an already-created Tag object as a function tag.
- If you want want to create the tag as well, consider using
+ If you want to create the tag as well, consider using
:meth:`create_auto_function_tag <function.Function.create_auto_function_tag>`
:param Tag tag: Tag object to be added
:rtype: None