diff options
| author | Rapptz <[email protected]> | 2017-05-19 21:57:25 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-05-19 21:58:02 -0400 |
| commit | 3727618b6547981e66d022c04516cf43488ab1f8 (patch) | |
| tree | 74e4cb9388cd31791998cecd2ffed96bc1c6a0ea /discord/invite.py | |
| parent | Update migrating page with new extension information. (diff) | |
| download | discord.py-3727618b6547981e66d022c04516cf43488ab1f8.tar.xz discord.py-3727618b6547981e66d022c04516cf43488ab1f8.zip | |
Kill remaining references to discord.Channel in documentation.
Diffstat (limited to 'discord/invite.py')
| -rw-r--r-- | discord/invite.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/invite.py b/discord/invite.py index 2139500c..a630b3fb 100644 --- a/discord/invite.py +++ b/discord/invite.py @@ -31,7 +31,7 @@ from .mixins import Hashable from .object import Object class Invite(Hashable): - """Represents a Discord :class:`Guild` or :class:`Channel` invite. + """Represents a Discord :class:`Guild` or :class:`abc.GuildChannel` invite. Depending on the way this object was created, some of the attributes can have a value of ``None``. @@ -73,7 +73,7 @@ class Invite(Hashable): How many times the invite can be used. inviter: :class:`User` The user who created the invite. - channel: :class:`Channel` + channel: :class:`abc.GuildChannel` The channel the invite is for. """ |