From 942d1cd1c0517e7a73a0a6f3d0102b25b967e40e Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Sun, 4 Aug 2024 22:20:42 -0400 Subject: spellcheck pass on pydocs --- python/plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/plugin.py') 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): -- cgit v1.3.1