Fix references to threading.enumerate().
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst
index 412000e..1440215 100644
--- a/Doc/library/threading.rst
+++ b/Doc/library/threading.rst
@@ -33,7 +33,7 @@
activeCount()
Return the number of :class:`Thread` objects currently alive. The returned
- count is equal to the length of the list returned by :func:`enumerate`.
+ count is equal to the length of the list returned by :func:`.enumerate`.
.. function:: Condition()
@@ -321,7 +321,7 @@
Roughly, a thread is alive from the moment the :meth:`start` method
returns until its :meth:`run` method terminates. The module function
- :func:`enumerate` returns a list of all alive threads.
+ :func:`.enumerate` returns a list of all alive threads.
.. method:: isDaemon()
setDaemon()