comment
authorClaus Gittinger <cg@exept.de>
Fri, 14 Nov 2003 14:04:17 +0100
changeset 7752 134213bdebd8
parent 7751 e6bfe9fd8ef8
child 7753 a4de4f3a203f
comment
Collection.st
OrderedCollection.st
--- a/Collection.st	Fri Nov 14 14:03:22 2003 +0100
+++ b/Collection.st	Fri Nov 14 14:04:17 2003 +0100
@@ -310,6 +310,7 @@
     ].
 ! !
 
+
 !Collection methodsFor:'accessing'!
 
 anElement
@@ -597,7 +598,7 @@
 
 addAll:aCollection
     "add all elements of the argument, aCollection to the receiver.
-     Returns the argument, aCollection."
+     Returns the argument, aCollection (sigh)."
 
     aCollection do:[:element |
         self add:element
@@ -2587,7 +2588,7 @@
 !Collection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Collection.st,v 1.147 2003-10-23 15:43:16 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Collection.st,v 1.148 2003-11-14 13:04:17 cg Exp $'
 ! !
 
 Collection initialize!
--- a/OrderedCollection.st	Fri Nov 14 14:03:22 2003 +0100
+++ b/OrderedCollection.st	Fri Nov 14 14:04:17 2003 +0100
@@ -430,8 +430,8 @@
 !
 
 addAll:aCollection
-    "add all elements of the argument, aCollection to the
-     receiver. Returns the argument, aCollection."
+    "add all elements of the argument, aCollection to the receiver. 
+     Returns the argument, aCollection (sigh)."
 
     self addAll:aCollection beforeIndex:(1 + self size).
     ^ aCollection
@@ -1907,5 +1907,5 @@
 !OrderedCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/OrderedCollection.st,v 1.86 2003-05-07 14:15:30 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/OrderedCollection.st,v 1.87 2003-11-14 13:03:45 cg Exp $'
 ! !