[Zope-Checkins] CVS: Zope/lib/python/BTrees - Interfaces.py:1.9
   
    Andreas Jung
     
    andreas@digicool.com
       
    Thu, 28 Feb 2002 18:50:51 -0500
    
    
  
Update of /cvs-repository/Zope/lib/python/BTrees
In directory cvs.zope.org:/tmp/cvs-serv10706
Modified Files:
	Interfaces.py 
Log Message:
an intersection is not a union
=== Zope/lib/python/BTrees/Interfaces.py 1.8 => 1.9 ===
 
     def intersection(c1, c2):
-        """Compute the Union of c1 and c2.
+        """Compute the intersection of c1 and c2.
 
         If c1 is None, then c2 is returned, otherwise, if c2 is None,
         then c1 is returned.