#OTHER by cg
authorClaus Gittinger <cg@exept.de>
Tue, 26 Mar 2019 11:54:02 +0100
changeset 4921 e5f2b1b5a28d
parent 4920 8c94a1a0ed25
child 4922 ff7afd151379
#OTHER by cg comment in atAllPut:
RunArray.st
--- a/RunArray.st	Tue Mar 26 11:36:38 2019 +0100
+++ b/RunArray.st	Tue Mar 26 11:54:02 2019 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  This class is not covered by or part of the ST/X licence.
 
@@ -583,6 +585,7 @@
 
 atAllPut:anObject 
     "replace all elements of the collection by the argument, anObject.
+     Return the receiver.
      Notice: This operation modifies the receiver, NOT a copy;
      therefore the change may affect all others referencing the receiver."
 
@@ -595,6 +598,8 @@
      c atAllPut:1.
      Transcript showCR:c.   
     "
+
+    "Modified (comment): / 26-03-2019 / 11:53:28 / Claus Gittinger"
 ! !
 
 !RunArray methodsFor:'adding & removing'!