From 77709720419a42fdf2457d6ae6a1efb49efc6aad Mon Sep 17 00:00:00 2001 From: Vish M <62267480+justanotherbyte@users.noreply.github.com> Date: Tue, 5 Apr 2022 16:01:55 +0100 Subject: [PATCH] A small grammar fix app_commands.context_menu This just makes it so it adheres with the rule that `an` goes before a word that begins with a vowel. --- discord/app_commands/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/app_commands/commands.py b/discord/app_commands/commands.py index 8fb916145..380f7d0f4 100644 --- a/discord/app_commands/commands.py +++ b/discord/app_commands/commands.py @@ -1310,7 +1310,7 @@ def command( def context_menu(*, name: str = MISSING) -> Callable[[ContextMenuCallback], ContextMenu]: - """Creates a application command context menu from a regular function. + """Creates an application command context menu from a regular function. 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`,