From d5e14eb715a47d38eaf9ca834820eedb8451fee2 Mon Sep 17 00:00:00 2001 From: Jay3332 <40323796+jay3332@users.noreply.github.com> Date: Fri, 7 May 2021 07:38:44 -0400 Subject: [PATCH] [commands] Fix a minor grammar error in MaxConcurrencyReached --- discord/ext/commands/errors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ext/commands/errors.py b/discord/ext/commands/errors.py index ecca00b4c..a86cc8506 100644 --- a/discord/ext/commands/errors.py +++ b/discord/ext/commands/errors.py @@ -488,7 +488,7 @@ class MaxConcurrencyReached(CommandError): suffix = 'per %s' % name if per.name != 'default' else 'globally' plural = '%s times %s' if number > 1 else '%s time %s' fmt = plural % (number, suffix) - super().__init__(f'Too many people using this command. It can only be used {fmt} concurrently.') + super().__init__(f'Too many people are using this command. It can only be used {fmt} concurrently.') class MissingRole(CheckFailure): """Exception raised when the command invoker lacks a role to run a command.