OrderedDictionary.st
changeset 15662 e87729351c27
parent 15534 808593c7efb3
child 15759 3d3ab3a446e5
--- a/OrderedDictionary.st	Wed Aug 21 13:16:12 2013 +0200
+++ b/OrderedDictionary.st	Wed Aug 21 13:16:23 2013 +0200
@@ -579,7 +579,7 @@
 
 findLast:aBlock startingAt:startIndex
     "Return the index of the last association in the dictionary for which aBlock
-     evaluates as true. Start the search at startIndex.
+     evaluates as true. Start the backward search at startIndex.
      If the block does not evaluate to true, return 0"
 
     startIndex to:1 by:-1 do: [:index | 
@@ -987,10 +987,10 @@
 !OrderedDictionary class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/OrderedDictionary.st,v 1.42 2013-07-22 08:25:33 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/OrderedDictionary.st,v 1.43 2013-08-21 11:16:23 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/OrderedDictionary.st,v 1.42 2013-07-22 08:25:33 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/OrderedDictionary.st,v 1.43 2013-08-21 11:16:23 cg Exp $'
 ! !