aboutsummaryrefslogtreecommitdiff
path: root/docs/ext
diff options
context:
space:
mode:
authorRapptz <[email protected]>2019-03-15 05:54:23 -0400
committerRapptz <[email protected]>2019-03-15 05:54:23 -0400
commit3527203e0786ebd2d81a91868628ae78ed1e8df6 (patch)
tree575391b03008355a1edcdb851f02e69e4bbff7c3 /docs/ext
parent[commands] Add Cog.description to get the clean docstring. (diff)
downloaddiscord.py-3527203e0786ebd2d81a91868628ae78ed1e8df6.tar.xz
discord.py-3527203e0786ebd2d81a91868628ae78ed1e8df6.zip
[commands] Redesign HelpFormatter into HelpCommand
Part of #1938
Diffstat (limited to 'docs/ext')
-rw-r--r--docs/ext/commands/api.rst16
1 files changed, 12 insertions, 4 deletions
diff --git a/docs/ext/commands/api.rst b/docs/ext/commands/api.rst
index 47af272d..ca822c40 100644
--- a/docs/ext/commands/api.rst
+++ b/docs/ext/commands/api.rst
@@ -94,13 +94,21 @@ Cogs
.. _ext_commands_api_formatters:
-Formatters
------------
+Help Commands
+-----------------
-.. autoclass:: discord.ext.commands.Paginator
+.. autoclass:: discord.ext.commands.HelpCommand
+ :members:
+
+.. autoclass:: discord.ext.commands.DefaultHelpCommand
+ :members:
+ :exclude-members: send_bot_help, send_cog_help, send_group_help, send_command_help, prepare_help_command
+
+.. autoclass:: discord.ext.commands.MinimalHelpCommand
:members:
+ :exclude-members: send_bot_help, send_cog_help, send_group_help, send_command_help, prepare_help_command
-.. autoclass:: discord.ext.commands.HelpFormatter
+.. autoclass:: discord.ext.commands.Paginator
:members:
.. _ext_commands_api_checks: