aboutsummaryrefslogtreecommitdiff
path: root/discord/abc.py
diff options
context:
space:
mode:
authorNadir Chowdhury <[email protected]>2021-04-16 03:41:41 +0100
committerGitHub <[email protected]>2021-04-15 22:41:41 -0400
commit8f9819eb4c1c0ddd477c8ff4f80deec8aea054cc (patch)
tree56eaf6a67ae68052b6ea78baea2bc1b8484b002a /discord/abc.py
parent[commands] Remove HelpCommand.clean_prefix (#6736) (diff)
downloaddiscord.py-8f9819eb4c1c0ddd477c8ff4f80deec8aea054cc.tar.xz
discord.py-8f9819eb4c1c0ddd477c8ff4f80deec8aea054cc.zip
[docs] Fix various unresolved references
Diffstat (limited to 'discord/abc.py')
-rw-r--r--discord/abc.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/discord/abc.py b/discord/abc.py
index 5fd4f188..73376b7c 100644
--- a/discord/abc.py
+++ b/discord/abc.py
@@ -780,10 +780,10 @@ class GuildChannel(Protocol):
Whether to move the channel to the end of the
channel list (or category if given).
This is mutually exclusive with ``beginning``, ``before``, and ``after``.
- before: :class:`abc.Snowflake`
+ before: :class:`~discord.abc.Snowflake`
The channel that should be before our current channel.
This is mutually exclusive with ``beginning``, ``end``, and ``after``.
- after: :class:`abc.Snowflake`
+ after: :class:`~discord.abc.Snowflake`
The channel that should be after our current channel.
This is mutually exclusive with ``beginning``, ``end``, and ``before``.
offset: :class:`int`
@@ -793,7 +793,7 @@ class GuildChannel(Protocol):
while a negative number moves it above. Note that this
number is relative and computed after the ``beginning``,
``end``, ``before``, and ``after`` parameters.
- category: Optional[:class:`abc.Snowflake`]
+ category: Optional[:class:`~discord.abc.Snowflake`]
The category to move this channel under.
If ``None`` is given then it moves it out of the category.
This parameter is ignored if moving a category channel.