From 4ad6146069745bf28f40e03948d1bcf6bfa717ea Mon Sep 17 00:00:00 2001
From: HigherOrderLogic <73709188+HigherOrderLogic@users.noreply.github.com>
Date: Tue, 8 Mar 2022 05:36:38 +0700
Subject: [PATCH] Fix doc typo in Group docstring

---
 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 4b821a1d2..98307c8c5 100644
--- a/discord/app_commands/commands.py
+++ b/discord/app_commands/commands.py
@@ -754,7 +754,7 @@ class Group:
             raise ValueError('maximum number of child commands exceeded')
 
     def remove_command(self, name: str, /) -> Optional[Union[Command, Group]]:
-        """Remove a command or group from the internal list of commands.
+        """Removes a command or group from the internal list of commands.
 
         Parameters
         -----------