SequenceableCollection.st
changeset 13384 fbe8205af682
parent 13383 fda414623fc6
child 13465 35721e64ac25
--- a/SequenceableCollection.st	Thu Jun 02 13:21:52 2011 +0200
+++ b/SequenceableCollection.st	Thu Jun 02 13:23:18 2011 +0200
@@ -4237,15 +4237,15 @@
     stop := index2.  "/ and guarantee inline loop code below.
 
     start to:stop do:[:index |
-	aBlock value:(self at:index).
+        aBlock value:(self at:index).
     ]
 
     "
      #(one two three four five six)
-	from:3
-	to:5
-	do:[:element | Transcript showCR:element]
-    "
+        from:3 to:5 do:[:element | Transcript showCR:element]
+    "
+
+    "Modified: / 02-06-2011 / 13:23:06 / cg"
 !
 
 from:index1 to:index2 keysAndValuesDo:aBlock
@@ -4278,9 +4278,7 @@
 
     "
      #(one two three four five six)
-        from:3
-        to:10
-        orEndDo:[:element | Transcript showCR:element]
+        from:3 to:10 orEndDo:[:element | Transcript showCR:element]
     "
 
     "Created: / 02-06-2011 / 13:21:32 / cg"
@@ -7893,11 +7891,11 @@
 !SequenceableCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.303 2011-06-02 11:21:52 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.304 2011-06-02 11:23:18 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.303 2011-06-02 11:21:52 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.304 2011-06-02 11:23:18 cg Exp $'
 ! !
 
 SequenceableCollection initialize!