summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-06-04 05:26:40 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-06-04 05:26:40 (GMT)
commit19409197e2deaa72649ade73318af16128018c74 (patch)
treecf8c29c532c4345f3af97ccc6ffcc015b91da327 /Lib/asyncio
parent5a493e9dc4f83e7e2a67dc38b7d2b886a6ee8960 (diff)
parent3ee6270262627b157bb69169c0fe78855716efdb (diff)
downloadcpython-19409197e2deaa72649ade73318af16128018c74.zip
cpython-19409197e2deaa72649ade73318af16128018c74.tar.gz
cpython-19409197e2deaa72649ade73318af16128018c74.tar.bz2
Merge typo fixes from 3.5
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: