Dictionary.st
branchjv
changeset 18800 02724cc719b6
parent 18345 fb699032075a
parent 18787 a1b603604641
child 19013 25f4ebeb5548
--- a/Dictionary.st	Thu Oct 01 06:52:24 2015 +0200
+++ b/Dictionary.st	Fri Oct 02 06:42:49 2015 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1991 by Claus Gittinger
 	      All Rights Reserved
@@ -1025,12 +1023,12 @@
 
      In contrast to #removeKey:, this does not resize the underlying collection
      and therefore does NOT rehash & change the elements order.
-     Therefor this can be used while enumerating the receiver,
+     Therefore this can be used while enumerating the receiver,
      which is not possible if #removeKey: is used.
 
      WARNING: since no resizing is done, the physical amount of memory used
               by the container remains the same, although the logical size shrinks.
-              You may want to manually resize the receiver using #emptyCheck."
+              You may want to manually resize the receiver using #possiblyShrink."
 
     |index "{ Class:SmallInteger }"
      next  "{ Class:SmallInteger }"
@@ -1124,7 +1122,7 @@
 
      WARNING: since no resizing is done, the physical amount of memory used
               by the container remains the same, although the logical size shrinks.
-              You may want to manually resize the receiver using #emptyCheck."
+              You may want to manually resize the receiver using #possiblyShrink."
 
     |next  "{ Class:SmallInteger }"
      oldKey|
@@ -2267,10 +2265,10 @@
 !Dictionary class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Dictionary.st,v 1.126 2015-05-15 06:54:25 cg Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/Dictionary.st,v 1.126 2015-05-15 06:54:25 cg Exp $'
+    ^ '$Header$'
 ! !