From 4ebe02ab1f261bd1ccf7f0d87962693bb31b89ae Mon Sep 17 00:00:00 2001 From: Pedro Cunha Date: Thu, 7 Feb 2019 00:25:31 +0000 Subject: [PATCH] Fix documentation typo in CategoryChannel --- discord/channel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/channel.py b/discord/channel.py index 045d16243..06b1dbf82 100644 --- a/discord/channel.py +++ b/discord/channel.py @@ -635,7 +635,7 @@ class CategoryChannel(discord.abc.GuildChannel, Hashable): @property def voice_channels(self): - """List[:class:`VoiceChannel`]: Returns the text channels that are under this category.""" + """List[:class:`VoiceChannel`]: Returns the voice channels that are under this category.""" ret = [c for c in self.guild.channels if c.category_id == self.id and isinstance(c, VoiceChannel)]