OrderedSet.st
changeset 15878 ed345dd0ab0c
parent 15143 7a1e2ff50fd5
child 16516 c9a60c35224d
--- a/OrderedSet.st	Tue Dec 17 17:47:26 2013 +0100
+++ b/OrderedSet.st	Tue Dec 17 21:54:58 2013 +0100
@@ -156,7 +156,7 @@
 add:anObject 
     "Add anObject to the receiver (if not already included). 
      Also, remember in the order (i.e. add to the end)
-     If anAssociation is already present in the dictionary,
+     If anObject is already present in the set,
      the order will not be changed. (See also: #addLast:)"
 
     (super testAndAdd:anObject) ifFalse:[
@@ -418,10 +418,10 @@
 !OrderedSet class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/OrderedSet.st,v 1.24 2013-04-25 07:32:44 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/OrderedSet.st,v 1.25 2013-12-17 20:54:58 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/OrderedSet.st,v 1.24 2013-04-25 07:32:44 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/OrderedSet.st,v 1.25 2013-12-17 20:54:58 stefan Exp $'
 ! !