aboutsummaryrefslogtreecommitdiff
path: root/discord
diff options
context:
space:
mode:
Diffstat (limited to 'discord')
-rw-r--r--discord/client.py4
-rw-r--r--discord/guild.py4
2 files changed, 2 insertions, 6 deletions
diff --git a/discord/client.py b/discord/client.py
index 7866ffd1..0daf011b 100644
--- a/discord/client.py
+++ b/discord/client.py
@@ -1076,9 +1076,7 @@ class Client:
# Guild stuff
def fetch_guilds(self, *, limit=100, before=None, after=None):
- """|coro|
-
- Retrieves an :class:`.AsyncIterator` that enables receiving your guilds.
+ """Retrieves an :class:`.AsyncIterator` that enables receiving your guilds.
.. note::
diff --git a/discord/guild.py b/discord/guild.py
index 0df3600d..eddffdc4 100644
--- a/discord/guild.py
+++ b/discord/guild.py
@@ -1261,9 +1261,7 @@ class Guild(Hashable):
return [convert(d) for d in data]
def fetch_members(self, *, limit=1000, after=None):
- """|coro|
-
- Retrieves an :class:`.AsyncIterator` that enables receiving the guild's members. In order to use this,
+ """Retrieves an :class:`.AsyncIterator` that enables receiving the guild's members. In order to use this,
:meth:`Intents.members` must be enabled.
.. note::