Dictionary.st
branchjv
changeset 18037 4cf874da38c9
parent 18011 deb0c3355881
parent 14897 41e26dc8902b
child 18040 a11a12546f23
--- a/Dictionary.st	Mon Mar 18 22:12:08 2013 +0000
+++ b/Dictionary.st	Fri Mar 22 09:18:54 2013 +0000
@@ -232,7 +232,6 @@
     ^ self = aDictionary
 ! !
 
-
 !Dictionary methodsFor:'accessing'!
 
 associationAt:aKey
@@ -531,9 +530,10 @@
 
 add:anAssociation
     "add the argument, anAssociation to the receiver.
+     Returns the argument, anAssosciation.
 
      WARNING: do not add elements while iterating over the receiver.
-	      Iterate over a copy to do this."
+              Iterate over a copy to do this."
 
     self at:(anAssociation key) put:(anAssociation value).
     ^ anAssociation
@@ -2055,9 +2055,10 @@
 !Dictionary class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Dictionary.st,v 1.108 2012-08-14 07:05:43 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Dictionary.st,v 1.109 2013-03-19 09:22:48 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/Dictionary.st,v 1.108 2012-08-14 07:05:43 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Dictionary.st,v 1.109 2013-03-19 09:22:48 cg Exp $'
 ! !
+