From 2d48a6d5a109a6604754adc47ab119940948aa30 Mon Sep 17 00:00:00 2001 From: s0lst1ce <46009999+s0lst1ce@users.noreply.github.com> Date: Fri, 13 Mar 2020 18:36:22 +0100 Subject: [PATCH] [commands] Fix a typo in the docstring of the internal _Semaphore class --- discord/ext/commands/cooldowns.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ext/commands/cooldowns.py b/discord/ext/commands/cooldowns.py index 5aa89cb1b..08f36b604 100644 --- a/discord/ext/commands/cooldowns.py +++ b/discord/ext/commands/cooldowns.py @@ -179,7 +179,7 @@ class _Semaphore: value is necessary because I need to support both `wait=True` and `wait=False`. - An asyncio.Queue could have been used to do this as well -- but it + An asyncio.Queue could have been used to do this as well -- but it is not as inefficient since internally that uses two queues and is a bit overkill for what is basically a counter. """