diff options
| -rw-r--r-- | bot/exts/recruitment/talentpool/_cog.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/recruitment/talentpool/_cog.py b/bot/exts/recruitment/talentpool/_cog.py index bbc135454..0554bf37a 100644 --- a/bot/exts/recruitment/talentpool/_cog.py +++ b/bot/exts/recruitment/talentpool/_cog.py @@ -259,7 +259,7 @@ class TalentPool(Cog, name="Talentpool"):              return          if len(reason) > REASON_MAX_CHARS: -            await ctx.send(f":x: Maxiumum allowed characters for the reason is {REASON_MAX_CHARS}.") +            await ctx.send(f":x: Maximum allowed characters for the reason is {REASON_MAX_CHARS}.")              return          # Manual request with `raise_for_status` as False because we want the actual response @@ -444,7 +444,7 @@ class TalentPool(Cog, name="Talentpool"):      async def edit_end_reason_command(self, ctx: Context, nomination_id: int, *, reason: str) -> None:          """Edits the unnominate reason for the nomination with the given `id`."""          if len(reason) > REASON_MAX_CHARS: -            await ctx.send(f":x: Maxiumum allowed characters for the end reason is {REASON_MAX_CHARS}.") +            await ctx.send(f":x: Maximum allowed characters for the end reason is {REASON_MAX_CHARS}.")              return          try:  |