diff options
| author | Steve C <[email protected]> | 2017-09-13 13:54:09 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-09-13 13:54:09 -0400 |
| commit | 233c2d80efb14a9d593ad7901d73d80d55683c65 (patch) | |
| tree | d942933f42b0a97ff3fc67e4c4b72dd9d90a96b9 | |
| parent | Add category support. (diff) | |
| download | discord.py-233c2d80efb14a9d593ad7901d73d80d55683c65.tar.xz discord.py-233c2d80efb14a9d593ad7901d73d80d55683c65.zip | |
Fix grammar in abc docs, add new implementation
| -rw-r--r-- | discord/abc.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/discord/abc.py b/discord/abc.py index 5be6ac10..b7cd26ef 100644 --- a/discord/abc.py +++ b/discord/abc.py @@ -133,7 +133,7 @@ class User(metaclass=abc.ABCMeta): class PrivateChannel(metaclass=abc.ABCMeta): """An ABC that details the common operations on a private Discord channel. - The follow implement this ABC: + The following implement this ABC: - :class:`DMChannel` - :class:`GroupChannel` @@ -165,10 +165,11 @@ _Overwrites = namedtuple('_Overwrites', 'id allow deny type') class GuildChannel: """An ABC that details the common operations on a Discord guild channel. - The follow implement this ABC: + The following implement this ABC: - :class:`TextChannel` - :class:`VoiceChannel` + - :class:`CategoryChannel` This ABC must also implement :class:`abc.Snowflake`. @@ -653,7 +654,7 @@ class GuildChannel: class Messageable(metaclass=abc.ABCMeta): """An ABC that details the common operations on a model that can send messages. - The follow implement this ABC: + The following implement this ABC: - :class:`TextChannel` - :class:`DMChannel` @@ -928,7 +929,7 @@ class Connectable(metaclass=abc.ABCMeta): """An ABC that details the common operations on a channel that can connect to a voice server. - The follow implement this ABC: + The following implement this ABC: - :class:`VoiceChannel` """ |