ArrayedCollection.st
changeset 2146 27069b34fb5a
parent 2125 b438ee11118f
child 2225 53313e47007a
--- a/ArrayedCollection.st	Sat Jan 11 13:14:19 1997 +0100
+++ b/ArrayedCollection.st	Sat Jan 11 13:16:28 1997 +0100
@@ -44,29 +44,29 @@
     (other collections keep a reference to the physical container, which
      can be easily replaced)
 
-    Notice: 
-	currently, ST/X supports growing fix-size collections
-	(such as Arrays, ByteArrays and Strings). However, this
-	is done in a very slow way (using #become).
-	Become is a very slow operation in a direct-pointer smalltalk
-	system.
-
-	Therefore, you SHOULD rewrite any application that do this,
-	to make use of OrderedCollection or any other collection which
-	can grow faster.
-	To remind you of that, a warning message is sent to the
-	standard error whenever such an operation is performed (see #grow).
-
-	Also note, that some other smalltalk systems do NOT allow
-	fix size collection to change their size, and that future
-	ST/X versions may be changed to trigger an error (instead of a
-	warning) in those situations.
+    [Warning:] 
+        currently, ST/X supports growing fix-size collections
+        (such as Arrays, ByteArrays and Strings). However, this
+        is done in a very slow way (using #become).
+        Become is a very slow operation in a direct-pointer smalltalk
+        system.
+                                                                                \
+        Therefore, you SHOULD rewrite any application that does this,
+        to make use of OrderedCollections or any other collection which
+        can grow faster.
+        To remind you of that, a warning message is sent to the
+        standard error whenever such an operation is performed (see #grow).
+                                                                                \
+        Also note, that some other smalltalk systems do NOT allow
+        fix size collection to change their size, and that future
+        ST/X versions may be changed to trigger an error (instead of a
+        warning) in those situations.
 
     [author:]
-	Claus Gittinger
+        Claus Gittinger
 
     [see also:]
-	OrderedCollection
+        OrderedCollection Array
 "
 ! !
 
@@ -343,5 +343,5 @@
 !ArrayedCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ArrayedCollection.st,v 1.40 1997-01-10 15:17:43 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ArrayedCollection.st,v 1.41 1997-01-11 12:16:28 cg Exp $'
 ! !