From 01915fbc095a72ffd2231c72b7c0892a377a477c Mon Sep 17 00:00:00 2001 From: rdrescher909 <51489753+rdrescher909@users.noreply.github.com> Date: Wed, 19 Oct 2022 21:36:05 -0400 Subject: [PATCH] [tasks] Clarify Loop.stop interaction with before_loop --- discord/ext/tasks/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discord/ext/tasks/__init__.py b/discord/ext/tasks/__init__.py index 0eeecb0f7..c6c5c7060 100644 --- a/discord/ext/tasks/__init__.py +++ b/discord/ext/tasks/__init__.py @@ -415,7 +415,7 @@ class Loop(Generic[LF]): use :meth:`cancel` instead. .. versionchanged:: 2.0 - Calling this method in :meth:`before_loop` will stop the first iteration from running. + Calling this method in :meth:`before_loop` will stop the loop before the initial iteration is run. .. versionadded:: 1.2 """ @@ -545,7 +545,7 @@ class Loop(Generic[LF]): The coroutine must take no arguments (except ``self`` in a class context). .. versionchanged:: 2.0 - Calling :meth:`stop` in this coroutine will stop the initial iteration from running. + Calling :meth:`stop` in this coroutine will stop the loop before the initial iteration is run. Parameters ------------