#DOCUMENTATION by stefan
authorStefan Vogel <sv@exept.de>
Thu, 08 Dec 2016 15:48:33 +0100
changeset 21116 3d401b0a90bd
parent 21115 c745f080ded2
child 21117 43e651d0a0a3
#DOCUMENTATION by stefan class: Dictionary comment/format in: #removeAllKeys:
Dictionary.st
--- a/Dictionary.st	Thu Dec 08 12:38:26 2016 +0100
+++ b/Dictionary.st	Thu Dec 08 15:48:33 2016 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1991 by Claus Gittinger
 	      All Rights Reserved
@@ -992,10 +990,10 @@
      If it was not in the collection report an error.
 
      WARNING: do not remove elements while iterating over the receiver.
-	      See #saveRemoveKey: to do this."
+              See #safeRemoveKey: to do this."
 
     aKeyCollection do:[:eachKey |
-	self removeKey:eachKey ifAbsent:[self errorKeyNotFound:eachKey]
+        self removeKey:eachKey ifAbsent:[self errorKeyNotFound:eachKey]
     ].
 !