OrderedCollection.st
changeset 1290 15ba3221b89b
parent 1221 46d72af387e9
child 1321 52e043fb7eaf
--- a/OrderedCollection.st	Thu Apr 25 18:12:44 1996 +0200
+++ b/OrderedCollection.st	Thu Apr 25 18:20:46 1996 +0200
@@ -38,11 +38,17 @@
     OrderedCollection have ordered elements. Insertion and removal at both ends
     is possible - therefore they can be used for queues and stacks.
 
-    Instance variables:
+    [Instance variables:]
+
+        contentsArray   <Array>         the actual contents
+        firstIndex      <SmallInteger>  index of first valid element
+        lastIndex       <SmallInteger>  index of last valid element
 
-    contentsArray   <Array>         the actual contents
-    firstIndex      <SmallInteger>  index of first valid element
-    lastIndex       <SmallInteger>  index of last valid element
+    [see also:]
+        Array
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
@@ -1304,5 +1310,5 @@
 !OrderedCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/OrderedCollection.st,v 1.46 1996-04-19 10:47:25 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/OrderedCollection.st,v 1.47 1996-04-25 16:15:26 cg Exp $'
 ! !