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/client.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/client.py')
| -rw-r--r-- | discord/client.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/discord/client.py b/discord/client.py index 6ad1ec93..021be0a8 100644 --- a/discord/client.py +++ b/discord/client.py @@ -538,7 +538,7 @@ class Client: return self._connection.get_emoji(id) def get_all_channels(self): - """A generator that retrieves every :class:`Channel` the client can 'access'. + """A generator that retrieves every :class:`abc.GuildChannel` the client can 'access'. This is equivalent to: :: @@ -548,8 +548,8 @@ class Client: Note ----- - Just because you receive a :class:`Channel` does not mean that - you can communicate in said channel. :meth:`Channel.permissions_for` should + Just because you receive a :class:`abc.GuildChannel` does not mean that + you can communicate in said channel. :meth:`abc.GuildChannel.permissions_for` should be used for that. """ |