summaryrefslogtreecommitdiffstats
path: root/Doc/library/weakref.rst
diff options
context:
space:
mode:
authorDonald Stufft <donald@stufft.io>2014-05-20 16:58:38 (GMT)
committerDonald Stufft <donald@stufft.io>2014-05-20 16:58:38 (GMT)
commit8b852f111eb3e3f2e4f53f207859fdb3654d9b10 (patch)
tree7b730a2191a3fcc424e834994b35c24b1f4dbd3d /Doc/library/weakref.rst
parent1c4398f880c21d5e14462ef7096319da39148774 (diff)
downloadcpython-8b852f111eb3e3f2e4f53f207859fdb3654d9b10.zip
cpython-8b852f111eb3e3f2e4f53f207859fdb3654d9b10.tar.gz
cpython-8b852f111eb3e3f2e4f53f207859fdb3654d9b10.tar.bz2
Fix Issue #21528 - Fix documentation typos
Diffstat (limited to 'Doc/library/weakref.rst')
-rw-r--r--Doc/library/weakref.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/weakref.rst b/Doc/library/weakref.rst
index 9ca60a9..cc883b1 100644
--- a/Doc/library/weakref.rst
+++ b/Doc/library/weakref.rst
@@ -566,8 +566,8 @@ third party, such as running code when a module is unloaded::
.. note::
- If you create a finalizer object in a daemonic thread just as the
- the program exits then there is the possibility that the finalizer
+ If you create a finalizer object in a daemonic thread just as the program
+ exits then there is the possibility that the finalizer
does not get called at exit. However, in a daemonic thread
:func:`atexit.register`, ``try: ... finally: ...`` and ``with: ...``
do not guarantee that cleanup occurs either.