KeyedCollection.st
changeset 19469 e43475084bb5
parent 17120 246d9198d84e
child 19478 1f5aa87f6170
child 19844 9a7234d4b08c
--- a/KeyedCollection.st	Fri Mar 25 17:11:20 2016 +0100
+++ b/KeyedCollection.st	Fri Mar 25 17:11:32 2016 +0100
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libbasic' }"
 
+"{ NameSpace: Smalltalk }"
+
 Collection subclass:#KeyedCollection
 	instanceVariableNames:''
 	classVariableNames:''
@@ -60,7 +62,7 @@
 isAbstract
     "Return if this class is an abstract class.
      True is returned for KeyedCollection here; false for subclasses.
-     Abstract subclasses must redefine again."
+     Abstract subclasses must redefine this again."
 
     ^ self == KeyedCollection
 ! !
@@ -199,10 +201,10 @@
 !KeyedCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/KeyedCollection.st,v 1.9 2014-11-26 08:39:20 cg Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/KeyedCollection.st,v 1.9 2014-11-26 08:39:20 cg Exp $'
+    ^ '$Header$'
 ! !