diff options
| author | Steve C <[email protected]> | 2019-05-10 18:44:07 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-05-10 18:44:07 -0400 |
| commit | 8f111c521c3a8f83cfbe82002b2df68f4cac553c (patch) | |
| tree | e40dcc756342d2e52f988aef0b4dd6552137583c | |
| parent | [tasks] Add Loop.restart (diff) | |
| download | discord.py-8f111c521c3a8f83cfbe82002b2df68f4cac553c.tar.xz discord.py-8f111c521c3a8f83cfbe82002b2df68f4cac553c.zip | |
Fix typo in Loop.restart 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 35d90d63..53781960 100644 --- a/discord/ext/tasks/__init__.py +++ b/discord/ext/tasks/__init__.py @@ -137,7 +137,7 @@ class Loop: self._task.cancel() def restart(self, *args, **kwargs): - r"""A convenience method to restart the internal start. + r"""A convenience method to restart the internal task. .. note:: |