commentary
authorClaus Gittinger <cg@exept.de>
Sat, 13 Apr 1996 14:20:14 +0200
changeset 1169 6b6e228d22e0
parent 1168 a8ac7ccb76db
child 1170 4250fe63479b
commentary
ByteArray.st
--- a/ByteArray.st	Sat Apr 13 14:18:56 1996 +0200
+++ b/ByteArray.st	Sat Apr 13 14:20:14 1996 +0200
@@ -1365,12 +1365,15 @@
 !
 
 replaceFrom:start to:stop with:aCollection startingAt:repStart
-    "replace elements from another collection"
+    "replace elements in the receiver between index start and stop,
+     with elements  taken from replacementCollection starting at repStart."
 
     (aCollection class == self class) ifTrue:[
-	^ self replaceBytesFrom:start to:stop with:aCollection startingAt:repStart
+        ^ self replaceBytesFrom:start to:stop with:aCollection startingAt:repStart
     ].
     ^ super replaceFrom:start to:stop with:aCollection startingAt:repStart
+
+    "Modified: 13.4.1996 / 12:16:46 / cg"
 ! !
 
 !ByteArray methodsFor:'image manipulation support'!
@@ -2098,5 +2101,5 @@
 !ByteArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ByteArray.st,v 1.50 1996-04-09 20:51:54 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ByteArray.st,v 1.51 1996-04-13 12:20:14 cg Exp $'
 ! !