[Python-checkins] r60958 - python/trunk/Doc/library/weakref.rst

georg.brandl python-checkins at python.org
Fri Feb 22 13:57:05 CET 2008


Author: georg.brandl
Date: Fri Feb 22 13:57:05 2008
New Revision: 60958

Modified:
   python/trunk/Doc/library/weakref.rst
Log:
Another fix.


Modified: python/trunk/Doc/library/weakref.rst
==============================================================================
--- python/trunk/Doc/library/weakref.rst	(original)
+++ python/trunk/Doc/library/weakref.rst	Fri Feb 22 13:57:05 2008
@@ -63,7 +63,7 @@
    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`.


More information about the Python-checkins mailing list