ArrayedCollection.st
changeset 1579 6993e41d4e6f
parent 1428 2c3e439f08cc
child 1998 9749a5f87238
--- a/ArrayedCollection.st	Thu Jul 18 21:15:47 1996 +0200
+++ b/ArrayedCollection.st	Thu Jul 18 21:39:19 1996 +0200
@@ -17,7 +17,7 @@
 	category:'Collections-Abstract'
 !
 
-!ArrayedCollection class methodsFor:'documentation'!
+!ArrayedCollection  class methodsFor:'documentation'!
 
 copyright
 "
@@ -70,7 +70,7 @@
 "
 ! !
 
-!ArrayedCollection class methodsFor:'instance creation'!
+!ArrayedCollection  class methodsFor:'instance creation'!
 
 with:element
     "return a new SequenceableCollection with one element:anObject"
@@ -174,7 +174,7 @@
     "Modified: 13.4.1996 / 12:14:38 / cg"
 ! !
 
-!ArrayedCollection class methodsFor:'queries'!
+!ArrayedCollection  class methodsFor:'queries'!
 
 growIsCheap
     "return true, if this collection can easily grow
@@ -206,13 +206,13 @@
 fixedSizeError
     "report an error that size of the collection cannot be changed.
      This is not used right now (instead, a warning is sent to stderr
-     in the #greo method); however, future versions of ST/X may no longer
+     in the #grow method); however, future versions of ST/X may no longer
      allow fixed size collection to grow.
      Read the documentation on why things are that way ..."
 
     ^ self error:'cannot change size'
 
-    "Modified: 13.4.1996 / 12:26:13 / cg"
+    "Modified: 18.7.1996 / 21:39:09 / cg"
 ! !
 
 !ArrayedCollection methodsFor:'printing & storing'!
@@ -336,8 +336,8 @@
     ^ self basicSize
 ! !
 
-!ArrayedCollection class methodsFor:'documentation'!
+!ArrayedCollection  class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ArrayedCollection.st,v 1.37 1996-05-20 08:44:16 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ArrayedCollection.st,v 1.38 1996-07-18 19:39:19 cg Exp $'
 ! !