comments
authorClaus Gittinger <cg@exept.de>
Thu, 30 Sep 2004 14:01:24 +0200
changeset 8606 6612bbac2d71
parent 8605 12e3a0f16d76
child 8607 7dd4ddf76dcb
comments
Collection.st
Set.st
--- a/Collection.st	Thu Sep 30 11:49:17 2004 +0200
+++ b/Collection.st	Thu Sep 30 14:01:24 2004 +0200
@@ -251,7 +251,6 @@
     ^ true
 ! !
 
-
 !Collection methodsFor:'Compatibility-Dolphin'!
 
 identityIncludes:anObject
@@ -2500,8 +2499,8 @@
 !Collection methodsFor:'set operations'!
 
 \ aCollection
-    "return a new set containing all elements of the receiver, which are
-     NOT also contained in the aCollection
+    "return a new set containing all elements of the receiver, 
+     which are NOT also contained in the aCollection
      For large collections you better use a Set for aCollection"
 
 
@@ -2523,8 +2522,8 @@
 !
 
 intersect:aCollection
-    "return a new set containing all elements of the receiver, which are
-     also contained in the argument collection.
+    "return a new set containing all elements of the receiver, 
+     which are also contained in the argument collection.
      For large collections you better use a Set for self"
 
     |newCollection|
@@ -2560,10 +2559,10 @@
 !
 
 xor:aCollection
-    "return a new set containing all elements of the receiver, which are
-     not contained in either the receiver or aCollection, but not in both.
-
-    For large collections you better use Sets for bosth self and aCollection"
+    "return a new set containing all elements, 
+     which are contained in either the receiver or aCollection, but not in both.
+
+     For large collections you better use Sets for both self and aCollection"
 
     |newCollection|
 
@@ -2759,7 +2758,7 @@
 !Collection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Collection.st,v 1.165 2004-09-22 09:29:46 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Collection.st,v 1.166 2004-09-30 12:01:09 cg Exp $'
 ! !
 
 Collection initialize!
--- a/Set.st	Thu Sep 30 11:49:17 2004 +0200
+++ b/Set.st	Thu Sep 30 14:01:24 2004 +0200
@@ -629,8 +629,8 @@
 !Set methodsFor:'obsolete set operations'!
 
 + aCollection
-    "Kept for backward compatibility. Use #union: instead, to isolate
-     arithmethic and set operations"
+    "Kept for backward compatibility. 
+     Use #union: instead, to isolate arithmethic and set operations"
 
     <resource: #obsolete>
 
@@ -638,8 +638,8 @@
 !
 
 - aCollection
-    "Kept for backward compatibility. Use #union: instead, to isolate
-     arithmethic and set operations"
+    "Kept for backward compatibility. 
+     Use #\ instead, to isolate arithmethic and set operations"
 
     <resource: #obsolete>
 
@@ -1167,7 +1167,7 @@
 !Set class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Set.st,v 1.90 2004-08-30 16:48:46 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Set.st,v 1.91 2004-09-30 12:01:24 cg Exp $'
 ! !
 
 Set initialize!