SequenceableCollection.st
changeset 16065 9b79c6542b04
parent 16064 493556fe675b
child 16069 8a173f8b0a29
--- a/SequenceableCollection.st	Tue Feb 18 01:35:31 2014 +0100
+++ b/SequenceableCollection.st	Tue Feb 18 01:37:23 2014 +0100
@@ -3348,11 +3348,11 @@
 !SequenceableCollection methodsFor:'copying'!
 
 ++ aCollection
-    "return a new collection formed from concatenating the receiver with
+    "This is just syntactic sugar for javascript.
+     Return a new collection formed from concatenating the receiver with
      the argument. The class of the new collection is determined by the
-     receivers class, so mixing classes is possible, if the second collections
-     elements can be stored into instances of the receiver's class.
-     This is just syntactic sugar for javascript"
+     receiver's class, so mixing classes is possible, if the second collections
+     elements can be stored into instances of the receiver's class."
 
     ^ self , aCollection
 
@@ -3432,6 +3432,7 @@
      'abc' ,* 0
      'abc' ,* 1
      'a' ,* 50
+     (1 to:4) ,* 20 
     "
 !
 
@@ -9236,11 +9237,11 @@
 !SequenceableCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.357 2014-02-18 00:35:31 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.358 2014-02-18 00:37:23 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.357 2014-02-18 00:35:31 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.358 2014-02-18 00:37:23 cg Exp $'
 ! !