aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--discord/channel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/channel.py b/discord/channel.py
index 045d1624..06b1dbf8 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)]