class: OrderedCollection
authorClaus Gittinger <cg@exept.de>
Tue, 31 Mar 2015 17:35:48 +0200
changeset 18182 8504bb241a13
parent 18181 f180c4847ddc
child 18183 3178ced76cfa
class: OrderedCollection comment/format in: #documentation
OrderedCollection.st
--- a/OrderedCollection.st	Mon Mar 30 21:03:46 2015 +0200
+++ b/OrderedCollection.st	Tue Mar 31 17:35:48 2015 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1989 by Claus Gittinger
 	      All Rights Reserved
@@ -38,12 +40,12 @@
 
 documentation
 "
-    OrderedCollections (OCs) have their elements ordered as they were
-    added. In addition, they provide all indexing access protocol
+    OrderedCollections (OCs) have their elements ordered as they were added. 
+    In addition, they provide all indexing access protocol
     and bulk copying (much like Arrays).
 
-    Insertion and removal at both ends is possible and reasonably 
-    fast - therefore they can be used for queues and stacks.
+    Insertion and removal at both ends is possible and also fast 
+    - therefore they can be used for queues and stacks.
 
     [Instance variables:]
         contentsArray   <Array>         the actual contents
@@ -275,6 +277,7 @@
     "
 ! !
 
+
 !OrderedCollection methodsFor:'accessing'!
 
 at:anInteger
@@ -2144,10 +2147,10 @@
 !OrderedCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/OrderedCollection.st,v 1.116 2015-03-28 11:51:43 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/OrderedCollection.st,v 1.117 2015-03-31 15:35:48 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/OrderedCollection.st,v 1.116 2015-03-28 11:51:43 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/OrderedCollection.st,v 1.117 2015-03-31 15:35:48 cg Exp $'
 ! !