aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRapptz <[email protected]>2019-02-23 10:51:23 -0500
committerRapptz <[email protected]>2019-02-23 10:51:23 -0500
commitab8e7b77320b6bdcc67b0b0f6ee5144e07bb2f09 (patch)
tree246e185d63e71d244aa38b2f502eb8c19e1a8199 /docs
parentBetter jpeg detection in utils._get_mime_type_for_image (diff)
downloaddiscord.py-ab8e7b77320b6bdcc67b0b0f6ee5144e07bb2f09.tar.xz
discord.py-ab8e7b77320b6bdcc67b0b0f6ee5144e07bb2f09.zip
[commands] Fix bug in behaviour in the cog inspection methods.
Diffstat (limited to 'docs')
-rw-r--r--docs/ext/commands/cogs.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ext/commands/cogs.rst b/docs/ext/commands/cogs.rst
index 680a5246..589a94c2 100644
--- a/docs/ext/commands/cogs.rst
+++ b/docs/ext/commands/cogs.rst
@@ -142,7 +142,7 @@ Inspection
Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog.
-To get a :class:`tuple` of commands, we can use :meth:`.Cog.get_commands`. ::
+To get a :class:`list` of commands, we can use :meth:`.Cog.get_commands`. ::
>>> cog = bot.get_cog('Greetings')
>>> commands = cog.get_commands()