diff --git a/discord/app_commands/commands.py b/discord/app_commands/commands.py index 8aa87749e..23c9054df 100644 --- a/discord/app_commands/commands.py +++ b/discord/app_commands/commands.py @@ -1908,7 +1908,7 @@ class Group: auto_locale_strings: bool = True, extras: Dict[Any, Any] = MISSING, ) -> Callable[[CommandCallback[GroupT, P, T]], Command[GroupT, P, T]]: - """Creates an application command under this group. + """A decorator that creates an application command from a regular function under this group. Parameters ------------ diff --git a/discord/app_commands/tree.py b/discord/app_commands/tree.py index a5b63fec0..62a54d652 100644 --- a/discord/app_commands/tree.py +++ b/discord/app_commands/tree.py @@ -842,7 +842,7 @@ class CommandTree(Generic[ClientT]): auto_locale_strings: bool = True, extras: Dict[Any, Any] = MISSING, ) -> Callable[[CommandCallback[Group, P, T]], Command[Group, P, T]]: - """Creates an application command directly under this tree. + """A decorator that creates an application command from a regular function directly under this tree. Parameters ------------ @@ -911,7 +911,7 @@ class CommandTree(Generic[ClientT]): auto_locale_strings: bool = True, extras: Dict[Any, Any] = MISSING, ) -> Callable[[ContextMenuCallback], ContextMenu]: - """Creates an application command context menu from a regular function directly under this tree. + """A decorator that creates an application command context menu from a regular function directly under this tree. This function must have a signature of :class:`~discord.Interaction` as its first parameter and taking either a :class:`~discord.Member`, :class:`~discord.User`, or :class:`~discord.Message`, diff --git a/docs/interactions/api.rst b/docs/interactions/api.rst index 990512dc6..edcebb1d2 100644 --- a/docs/interactions/api.rst +++ b/docs/interactions/api.rst @@ -472,6 +472,16 @@ CommandTree .. autoclass:: discord.app_commands.CommandTree :members: + :exclude-members: error, command, context_menu + + .. automethod:: CommandTree.command(*, name=..., description=..., nsfw=False, guild=..., guilds=..., auto_locale_strings=True, extras=...) + :decorator: + + .. automethod:: CommandTree.context_menu(*, name=..., nsfw=False, guild=..., guilds=..., auto_locale_strings=True, extras=...) + :decorator: + + .. automethod:: CommandTree.error(coro) + :decorator: Commands ~~~~~~~~~ @@ -483,6 +493,13 @@ Command .. autoclass:: discord.app_commands.Command :members: + :exclude-members: error, autocomplete + + .. automethod:: Command.autocomplete(name) + :decorator: + + .. automethod:: Command.error(coro) + :decorator: Parameter ++++++++++ @@ -499,6 +516,10 @@ ContextMenu .. autoclass:: discord.app_commands.ContextMenu :members: + :exclude-members: error + + .. automethod:: ContextMenu.error(coro) + :decorator: Group ++++++ @@ -507,6 +528,13 @@ Group .. autoclass:: discord.app_commands.Group :members: + :exclude-members: error, command + + .. automethod:: Group.command(*, name=..., description=..., nsfw=False, auto_locale_strings=True, extras=...) + :decorator: + + .. automethod:: Group.error(coro) + :decorator: Decorators ~~~~~~~~~~~