comment
authorClaus Gittinger <cg@exept.de>
Wed, 15 May 2002 10:26:49 +0200
changeset 6550 adb966d9afc9
parent 6549 8664491c4428
child 6551 faa0719487a7
comment
FileDirectory.st
ImmutableArray.st
--- a/FileDirectory.st	Wed May 15 10:26:18 2002 +0200
+++ b/FileDirectory.st	Wed May 15 10:26:49 2002 +0200
@@ -598,6 +598,8 @@
 !
 
 species
+    "return the type of collection to be returned by collect, select etc."
+
     ^ OrderedCollection
 !
 
@@ -634,6 +636,6 @@
 !FileDirectory class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/FileDirectory.st,v 1.41 2001-01-08 16:36:43 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/FileDirectory.st,v 1.42 2002-05-15 08:26:35 cg Exp $'
 ! !
 FileDirectory initialize!
--- a/ImmutableArray.st	Wed May 15 10:26:18 2002 +0200
+++ b/ImmutableArray.st	Wed May 15 10:26:49 2002 +0200
@@ -164,7 +164,7 @@
 species
     "Copies should be mutable"
 
-    ^Array
+    ^ Array
 ! !
 
 !ImmutableArray methodsFor:'queries'!
@@ -199,5 +199,5 @@
 !ImmutableArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ImmutableArray.st,v 1.19 2001-02-01 11:34:25 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ImmutableArray.st,v 1.20 2002-05-15 08:26:49 cg Exp $'
 ! !