Use Python 3 instead of 3.0.
diff --git a/Doc/library/thread.rst b/Doc/library/thread.rst
index 7e8d5c8..15859d1 100644
--- a/Doc/library/thread.rst
+++ b/Doc/library/thread.rst
@@ -5,9 +5,9 @@
:synopsis: Create multiple threads of control within one interpreter.
.. note::
- The :mod:`thread` module has been renamed to :mod:`_thread` in Python 3.0.
+ The :mod:`thread` module has been renamed to :mod:`_thread` in Python 3.
The :term:`2to3` tool will automatically adapt imports when converting your
- sources to 3.0; however, you should consider using the high-level
+ sources to Python 3; however, you should consider using the high-level
:mod:`threading` module instead.