summaryrefslogtreecommitdiff
path: root/python/plugin.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/plugin.py
parent8b3c5bc8ea70b837dd7fff17e79a60c3612169d9 (diff)
spellcheck pass on pydocs
Diffstat (limited to 'python/plugin.py')
-rw-r--r--python/plugin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/plugin.py b/python/plugin.py
index 5a92215b..1536b3bc 100644
--- a/python/plugin.py
+++ b/python/plugin.py
@@ -980,7 +980,7 @@ class BackgroundTask(metaclass=_BackgroundTaskMetaclass):
available via the :py:class:`.BackgroundTaskThread` class.
:param initial_progress_text: text description of the task to display in the status bar in the UI, defaults to `""`
- :param can_cancel: whether to enable cancelation of the task, defaults to `False`
+ :param can_cancel: whether to enable cancellation of the task, defaults to `False`
"""
def __init__(self, initial_progress_text="", can_cancel=False, handle=None):
if handle is None:
@@ -1041,7 +1041,7 @@ class BackgroundTaskThread(BackgroundTask):
See the :py:class:`.BackgroundTask` for additional information.
:param initial_progress_text: text description of the task to display in the status bar in the UI, defaults to `""`
- :param can_cancel: whether to enable cancelation of the task, defaults to `False`
+ :param can_cancel: whether to enable cancellation of the task, defaults to `False`
"""
def __init__(self, initial_progress_text: str = "", can_cancel: bool = False):
class _Thread(threading.Thread):