*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Thu, 17 Aug 2000 19:27:04 +0200
changeset 5531 27f62fc8193f
parent 5530 a06e9a29869e
child 5532 c1b11318aba3
*** empty log message ***
Array.st
--- a/Array.st	Thu Aug 17 16:01:48 2000 +0200
+++ b/Array.st	Thu Aug 17 19:27:04 2000 +0200
@@ -442,11 +442,11 @@
 !Array methodsFor:'converting'!
 
 asArray
-    "return the receiver as an array - thats the receiver itself"
+    "return the receiver as an array - thats the receiver itself."
 
     "could be an instance of a subclass..."
     self class == Array ifTrue:[
-	^ self
+        ^ self
     ].
     ^ super asArray
 
@@ -2415,5 +2415,5 @@
 !Array class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Array.st,v 1.124 2000-08-10 16:43:56 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Array.st,v 1.125 2000-08-17 17:27:04 cg Exp $'
 ! !