diff -r 57efea75b8a2 -r 0f75504d1ce4 Set.st --- a/Set.st Fri Jan 22 13:25:02 2016 +0100 +++ b/Set.st Fri Jan 22 13:25:31 2016 +0100 @@ -1,5 +1,3 @@ -"{ Encoding: utf8 }" - " COPYRIGHT (c) 1991 by Claus Gittinger All Rights Reserved @@ -382,7 +380,7 @@ ! remove:oldObjectArg ifAbsent:exceptionBlock - "remove oldObject from the collection and return it. + "remove the first occurrence of oldObject from the collection and return it. If it was not in the collection return the value of exceptionBlock. Notice, that the returned object could be non-identical to the argument (although it will always be equal). @@ -1342,11 +1340,11 @@ !Set class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/Set.st,v 1.134 2015-06-08 19:22:24 cg Exp $' + ^ '$Header$' ! version_CVS - ^ '$Header: /cvs/stx/stx/libbasic/Set.st,v 1.134 2015-06-08 19:22:24 cg Exp $' + ^ '$Header$' ! !