summaryrefslogtreecommitdiffstats
path: root/Lib/mutex.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-05-26 05:28:50 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-05-26 05:28:50 (GMT)
commitb1d867f14965e2369d31a3fcdab5bca34b4d81b4 (patch)
treee12a80fb726447f7e1c09839aae24fd9277258ce /Lib/mutex.py
parent5db0b3396e664affee09c0cb2094fdafc94acd94 (diff)
downloadcpython-b1d867f14965e2369d31a3fcdab5bca34b4d81b4.zip
cpython-b1d867f14965e2369d31a3fcdab5bca34b4d81b4.tar.gz
cpython-b1d867f14965e2369d31a3fcdab5bca34b4d81b4.tar.bz2
Issue #27076: Doc, comment and test function name spelling fixes
Most fixes to Doc/ and Lib/ directories by Ville Skyttä.
Diffstat (limited to 'Lib/mutex.py')
-rw-r--r--Lib/mutex.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/mutex.py b/Lib/mutex.py
index f8acba4..3d8f428 100644
--- a/Lib/mutex.py
+++ b/Lib/mutex.py
@@ -9,7 +9,7 @@ the first queue entry is removed and its function(argument) pair called,
implying it now has the lock.
Of course, no multi-threading is implied -- hence the funny interface
-for lock, where a function is called once the lock is aquired.
+for lock, where a function is called once the lock is acquired.
"""
from warnings import warnpy3k
warnpy3k("the mutex module has been removed in Python 3.0", stacklevel=2)