aboutsummaryrefslogtreecommitdiffstats
path: root/bot
diff options
context:
space:
mode:
authorGravatar Shivansh-007 <[email protected]>2021-03-14 13:36:37 +0530
committerGravatar Shivansh-007 <[email protected]>2021-03-14 13:36:37 +0530
commit1c6bcfdb01ad4ab4d31047be05207c8a27cdfbd0 (patch)
treef6bfadf86fcdf76ffff64f00218d724b57baadaf /bot
parentAdd link to wikipedia in error embed and information embed. (diff)
Apply requested grammar changes.
Diffstat (limited to 'bot')
-rw-r--r--bot/exts/pride/pride_leader.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/pride/pride_leader.py b/bot/exts/pride/pride_leader.py
index 9a2ee6e1..d955a2cc 100644
--- a/bot/exts/pride/pride_leader.py
+++ b/bot/exts/pride/pride_leader.py
@@ -45,7 +45,7 @@ class PrideLeader(commands.Cog):
if not valid_names:
valid_names = ", ".join(self.pride)
- error_msg = "Sorry your input didn't match any stored name, here is a list of available names:"
+ error_msg = "Sorry your input didn't match any stored names, here is a list of available names:"
else:
valid_names = "\n".join(valid_names)
error_msg = "Did you mean?"
@@ -113,5 +113,5 @@ class PrideLeader(commands.Cog):
def setup(bot: commands.Bot) -> None:
- """Loads Pride leader cog."""
+ """Loads the Pride leader cog."""
bot.add_cog(PrideLeader(bot))