#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Sat, 04 Jun 2016 04:25:29 +0200
changeset 3860 224a3ad98604
parent 3859 3f598428b3e8
child 3861 694e93011ca8
#DOCUMENTATION by cg class: SharedCollection comment/format in: #species
SharedCollection.st
--- a/SharedCollection.st	Sat Jun 04 04:25:15 2016 +0200
+++ b/SharedCollection.st	Sat Jun 04 04:25:29 2016 +0200
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libbasic2' }"
 
+"{ NameSpace: Smalltalk }"
+
 Collection subclass:#SharedCollection
 	instanceVariableNames:'accessLock realCollection'
 	classVariableNames:''
@@ -229,7 +231,7 @@
 !SharedCollection methodsFor:'queries'!
 
 species
-    "returns non shared collections"
+    "returns non shared collection's species"
 
     ^ realCollection species
 ! !
@@ -245,10 +247,10 @@
 !SharedCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/SharedCollection.st,v 1.13 2014-03-26 13:48:55 stefan Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic2/SharedCollection.st,v 1.13 2014-03-26 13:48:55 stefan Exp $'
+    ^ '$Header$'
 ! !