diff options
-rw-r--r-- | Lib/asyncio/locks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/locks.py b/Lib/asyncio/locks.py index b4c316a..6cd6779 100644 --- a/Lib/asyncio/locks.py +++ b/Lib/asyncio/locks.py @@ -204,7 +204,7 @@ class Event: class Condition: - """A Condition implementation, our equivalent to threading.Condition. + """A Condition implementation, asynchronous equivalent to threading.Condition. This class implements condition variable objects. A condition variable allows one or more coroutines to wait until they are notified by another |