OrderedCollection.st
changeset 229 210ee6865aa3
parent 217 a0400fdbc933
child 253 30daee717a53
--- a/OrderedCollection.st	Sun Feb 05 22:32:10 1995 +0100
+++ b/OrderedCollection.st	Sun Feb 05 22:32:46 1995 +0100
@@ -21,7 +21,7 @@
 COPYRIGHT (c) 1989 by Claus Gittinger
 	      All Rights Reserved
 
-$Header: /cvs/stx/stx/libbasic/OrderedCollection.st,v 1.18 1995-02-02 12:25:26 claus Exp $
+$Header: /cvs/stx/stx/libbasic/OrderedCollection.st,v 1.19 1995-02-05 21:32:46 claus Exp $
 '!
 
 !OrderedCollection class methodsFor:'documentation'!
@@ -42,7 +42,7 @@
 
 version
 "
-$Header: /cvs/stx/stx/libbasic/OrderedCollection.st,v 1.18 1995-02-02 12:25:26 claus Exp $
+$Header: /cvs/stx/stx/libbasic/OrderedCollection.st,v 1.19 1995-02-05 21:32:46 claus Exp $
 "
 !
 
@@ -124,8 +124,10 @@
 !
 
 copyWith:newElement
-    "return a new collection consisting of a copy of the receivers elements
-     plus the argument."
+    "return a new collection containing the receivers elements
+     and the single new element, newElement. 
+     This is different from concatentation, which expects another collection
+     as argument, but equivalent to copy-and-addLast."
 
     |newCollection mySize newSize|