From 1699db145fd482704173b2da072981ea52c47141 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 22 Feb 2008 12:57:05 +0000 Subject: [PATCH] Another fix. --- Doc/library/weakref.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/weakref.rst b/Doc/library/weakref.rst index 5a79cfad645..d27eb2ec057 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`.