diff options
| author | Rapptz <[email protected]> | 2020-12-14 22:18:40 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2020-12-14 22:18:40 -0500 |
| commit | 6515f339780ba2efe8951b827de53656aa84b695 (patch) | |
| tree | 7ef091a30e2cf209ec7b28691ec67ac47f610c0d | |
| parent | [tasks] Add support for manually calling the wrapped coroutine (diff) | |
| download | discord.py-6515f339780ba2efe8951b827de53656aa84b695.tar.xz discord.py-6515f339780ba2efe8951b827de53656aa84b695.zip | |
[tasks] Fix a typo in documentation
| -rw-r--r-- | discord/ext/tasks/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/ext/tasks/__init__.py b/discord/ext/tasks/__init__.py index 9c52a71a..d2db5df8 100644 --- a/discord/ext/tasks/__init__.py +++ b/discord/ext/tasks/__init__.py @@ -163,7 +163,7 @@ class Loop: async def __call__(self, *args, **kwargs): """|coro| - Calls the internal callback that the command holds. + Calls the internal callback that the task holds. .. versionadded:: 1.6 |