diff options
| author | s0lst1ce <[email protected]> | 2020-03-13 18:36:22 +0100 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2020-04-04 01:12:08 -0400 |
| commit | 2d48a6d5a109a6604754adc47ab119940948aa30 (patch) | |
| tree | 94f521f732e14cb72cd7c6b7d286a6ab9d049cc9 | |
| parent | fixing the BaseActivity links (diff) | |
| download | discord.py-2d48a6d5a109a6604754adc47ab119940948aa30.tar.xz discord.py-2d48a6d5a109a6604754adc47ab119940948aa30.zip | |
[commands] Fix a typo in the docstring of the internal _Semaphore class
| -rw-r--r-- | discord/ext/commands/cooldowns.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/ext/commands/cooldowns.py b/discord/ext/commands/cooldowns.py index 5aa89cb1..08f36b60 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. """ |