diff options
author | Georg Brandl <georg@python.org> | 2008-02-22 12:57:05 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-02-22 12:57:05 (GMT) |
commit | 1699db145fd482704173b2da072981ea52c47141 (patch) | |
tree | 88fe7208ef9de4e40deffa53d58eade62be35d45 | |
parent | 4e37c66262fcb5c1be53af4c454e58af777e4e1e (diff) | |
download | cpython-1699db145fd482704173b2da072981ea52c47141.zip cpython-1699db145fd482704173b2da072981ea52c47141.tar.gz cpython-1699db145fd482704173b2da072981ea52c47141.tar.bz2 |
Another fix.
-rw-r--r-- | Doc/library/weakref.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/weakref.rst b/Doc/library/weakref.rst index 5a79cfa..d27eb2e 100644 --- a/Doc/library/weakref.rst +++ b/Doc/library/weakref.rst @@ -63,7 +63,7 @@ support weak references but can add support through subclassing:: class Dict(dict): pass - obj = Dict(red=1, green=2, blue=3) # this object is weak referencable + obj = Dict(red=1, green=2, blue=3) # this object is weak referenceable Extension types can easily be made to support weak references; see :ref:`weakref-support`. |