aboutsummaryrefslogtreecommitdiff
path: root/discord
diff options
context:
space:
mode:
authorJay3332 <[email protected]>2021-05-07 07:38:44 -0400
committerGitHub <[email protected]>2021-05-07 07:38:44 -0400
commitd5e14eb715a47d38eaf9ca834820eedb8451fee2 (patch)
treee2e3fad58cc9d6b0d878e9c4647e7f45ead8ead0 /discord
parent[commands] Add GuildChannelConverter (diff)
downloaddiscord.py-d5e14eb715a47d38eaf9ca834820eedb8451fee2.tar.xz
discord.py-d5e14eb715a47d38eaf9ca834820eedb8451fee2.zip
[commands] Fix a minor grammar error in MaxConcurrencyReached
Diffstat (limited to 'discord')
-rw-r--r--discord/ext/commands/errors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/ext/commands/errors.py b/discord/ext/commands/errors.py
index ecca00b4..a86cc850 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.