Bag.st
changeset 88 81dacba7a63a
parent 54 06dbdeeed4f9
child 92 0c73b48551ac
--- a/Bag.st	Thu Jun 02 13:36:22 1994 +0200
+++ b/Bag.st	Thu Jun 02 18:22:49 1994 +0200
@@ -18,26 +18,42 @@
 !
 
 Bag comment:'
-
 COPYRIGHT (c) 1991 by Claus Gittinger
               All Rights Reserved
-
-$Header: /cvs/stx/stx/libbasic/Bag.st,v 1.6 1994-02-25 12:54:00 claus Exp $
-written jun 91 by claus
 '!
 
 !Bag class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 1991 by Claus Gittinger
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
+
+version
+"
+$Header: /cvs/stx/stx/libbasic/Bag.st,v 1.7 1994-06-02 16:19:21 claus Exp $
+"
+!
+
 documentation
 "
-Bag implements collections whose elements are unordered and have no
-external keys. Elements may occur more than once. The implementation
-uses a dictionary to store the objects occurence count using the object
-as key (i.e. using = and hash for inclusion tests).
+    Bag implements collections whose elements are unordered and have no
+    external keys. Elements may occur more than once. The implementation
+    uses a dictionary to store the objects occurence count using the object
+    as key (i.e. using = and hash for inclusion tests).
 
-Instance variables:
+    Instance variables:
 
-contents        <Dictionary>        for each element, the number of occurrences
+    contents        <Dictionary>    for each element, the number of occurrences
 "
 ! !