summaryrefslogtreecommitdiff
path: root/Doc/library/threading.rst
diff options
context:
space:
mode:
authorBrian Curtin <brian.curtin@gmail.com>2011-01-31 19:35:02 +0000
committerBrian Curtin <brian.curtin@gmail.com>2011-01-31 19:35:02 +0000
commita4ca06bdf333f159f6c84f3402281f75b355710f (patch)
tree6986d332d6dedfc3869e8cbeabf02ace1ccc5fe2 /Doc/library/threading.rst
parentdb8e0d12f089b9c49f2be1c4a4ab3275b8683ff4 (diff)
downloadcpython-a4ca06bdf333f159f6c84f3402281f75b355710f.tar.gz
#11083 typo: RuntimeException -> RuntimeError
Diffstat (limited to 'Doc/library/threading.rst')
-rw-r--r--Doc/library/threading.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst
index f50c2acb75..5f1b9bfb06 100644
--- a/Doc/library/threading.rst
+++ b/Doc/library/threading.rst
@@ -284,7 +284,7 @@ impossible to detect the termination of alien threads.
It must be called at most once per thread object. It arranges for the
object's :meth:`run` method to be invoked in a separate thread of control.
- This method will raise a :exc:`RuntimeException` if called more than once
+ This method will raise a :exc:`RuntimeError` if called more than once
on the same thread object.
.. method:: run()