From 233c2d80efb14a9d593ad7901d73d80d55683c65 Mon Sep 17 00:00:00 2001 From: Steve C Date: Wed, 13 Sep 2017 13:54:09 -0400 Subject: [PATCH] Fix grammar in abc docs, add new implementation --- discord/abc.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/discord/abc.py b/discord/abc.py index 5be6ac104..b7cd26ef5 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` """