diff options
| -rw-r--r-- | discord/ext/commands/context.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/ext/commands/context.py b/discord/ext/commands/context.py index 09449921..39e5d5cd 100644 --- a/discord/ext/commands/context.py +++ b/discord/ext/commands/context.py @@ -229,8 +229,8 @@ class Context(discord.abc.Messageable): @discord.utils.cached_property def channel(self): - """:class:`.TextChannel`: - Returns the channel associated with this context's command. Shorthand for :attr:`.Message.channel`. + """Union[:class:`.abc.Messageable`]: Returns the channel associated with this context's command. + Shorthand for :attr:`.Message.channel`. """ return self.message.channel |