From 8f111c521c3a8f83cfbe82002b2df68f4cac553c Mon Sep 17 00:00:00 2001 From: Steve C Date: Fri, 10 May 2019 18:44:07 -0400 Subject: [PATCH] Fix typo in Loop.restart documentation --- discord/ext/tasks/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ext/tasks/__init__.py b/discord/ext/tasks/__init__.py index 35d90d63e..537819600 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::