]> granicus.if.org Git - python/commitdiff
Minor textual adjustment, and style-guide conformance (no use of "iff").
authorFred Drake <fdrake@acm.org>
Fri, 26 Oct 2001 03:00:39 +0000 (03:00 +0000)
committerFred Drake <fdrake@acm.org>
Fri, 26 Oct 2001 03:00:39 +0000 (03:00 +0000)
Doc/lib/libweakref.tex

index d88b0516f584b08d48f74ee6597d398472e7d2d5..4b3767ea818614eb95f3ebceee379268b73a4e84 100644 (file)
@@ -47,10 +47,11 @@ be made to support weak references; see section \ref{weakref-extension},
   the \var{object} was deleted, the call will raise
   \exception{TypeError}.
   
-  Weak references support test for equality, but not ordering.  If the
-  \var{object} is still alive, to references are equal if the objects
-  are equal (regardless of the \var{callback}).  If the \var{object}
-  has been deleted, they are equal iff they are identical.
+  Weak references support tests for equality, but not ordering.  If
+  the \var{object} is still alive, two references are equal if the
+  objects are equal (regardless of the \var{callback}).  If
+  \var{object} has been deleted, they are equal only if the references
+  being compared are the same reference object.
 \end{funcdesc}
 
 \begin{funcdesc}{proxy}{object\optional{, callback}}