SharedCollection.st
changeset 2927 b7b7931cb32d
parent 2515 104080163067
child 3013 28d92a912dfa
--- a/SharedCollection.st	Mon Mar 18 22:49:57 2013 +0100
+++ b/SharedCollection.st	Tue Mar 19 10:22:28 2013 +0100
@@ -94,6 +94,9 @@
 !SharedCollection methodsFor:'message forwarding'!
 
 add:anElement
+    "add the argument, anObject to the receiver.
+     Return the added element."
+
     |rslt|
 
     accessLock critical:[
@@ -221,9 +224,10 @@
 !SharedCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/SharedCollection.st,v 1.8 2010-11-22 20:09:26 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/SharedCollection.st,v 1.9 2013-03-19 09:22:28 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic2/SharedCollection.st,v 1.8 2010-11-22 20:09:26 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/SharedCollection.st,v 1.9 2013-03-19 09:22:28 cg Exp $'
 ! !
+