aboutsummaryrefslogtreecommitdiff
path: root/discord
diff options
context:
space:
mode:
Diffstat (limited to 'discord')
-rw-r--r--discord/ext/commands/context.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/ext/commands/context.py b/discord/ext/commands/context.py
index 155e4797..c4691155 100644
--- a/discord/ext/commands/context.py
+++ b/discord/ext/commands/context.py
@@ -204,7 +204,7 @@ class Context(discord.abc.Messageable):
@property
def cog(self):
- """:class:`.Cog`: Returns the cog associated with this context's command. None if it does not exist."""
+ """Optional[:class:`.Cog`]: Returns the cog associated with this context's command. None if it does not exist."""
if self.command is None:
return None