summaryrefslogtreecommitdiffstats
path: root/Doc/library/threading.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-10-19 21:07:16 (GMT)
committerGeorg Brandl <georg@python.org>2010-10-19 21:07:16 (GMT)
commitf285bcca280bc3275b33fe78f3fb5a77efd66cb1 (patch)
treecbdfb0ce36f37d9ec3c6b8ee4703c7b96bec4243 /Doc/library/threading.rst
parent6dbed2e8b3fb90b25e2b99c5e522a5205626d07e (diff)
downloadcpython-f285bcca280bc3275b33fe78f3fb5a77efd66cb1.zip
cpython-f285bcca280bc3275b33fe78f3fb5a77efd66cb1.tar.gz
cpython-f285bcca280bc3275b33fe78f3fb5a77efd66cb1.tar.bz2
Be consistent in the spelling of thread-safe(ty).
Diffstat (limited to 'Doc/library/threading.rst')
-rw-r--r--Doc/library/threading.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst
index 3419e65..3e2e1e3 100644
--- a/Doc/library/threading.rst
+++ b/Doc/library/threading.rst
@@ -789,9 +789,9 @@ Currently, :class:`Lock`, :class:`RLock`, :class:`Condition`,
Importing in threaded code
--------------------------
-While the import machinery is thread safe, there are two key
-restrictions on threaded imports due to inherent limitations in the way
-that thread safety is provided:
+While the import machinery is thread-safe, there are two key restrictions on
+threaded imports due to inherent limitations in the way that thread-safety is
+provided:
* Firstly, other than in the main module, an import should not have the
side effect of spawning a new thread and then waiting for that thread in