summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-06-04 04:57:19 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-06-04 04:57:19 (GMT)
commit3ee6270262627b157bb69169c0fe78855716efdb (patch)
tree169cc7fbc8cea6edce9a14e1de2ffb72200d0c1e /Lib/asyncio
parent6047b5537226efdcd2e3b460957fb44388ec2e99 (diff)
downloadcpython-3ee6270262627b157bb69169c0fe78855716efdb.zip
cpython-3ee6270262627b157bb69169c0fe78855716efdb.tar.gz
cpython-3ee6270262627b157bb69169c0fe78855716efdb.tar.bz2
Fix typos in code comment and documentation
Diffstat (limited to 'Lib/asyncio')
-rw-r--r--Lib/asyncio/locks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/locks.py b/Lib/asyncio/locks.py
index 1804d7b..842d621 100644
--- a/Lib/asyncio/locks.py
+++ b/Lib/asyncio/locks.py
@@ -111,7 +111,7 @@ class Lock(_ContextManagerMixin):
acquire() is a coroutine and should be called with 'yield from'.
Locks also support the context management protocol. '(yield from lock)'
- should be used as context manager expression.
+ should be used as the context manager expression.
Usage: