Interval.st
branchjv
changeset 19478 1f5aa87f6170
parent 19277 e9182dc00c6d
parent 19462 4f67bb0b9182
child 21024 8734987eb5c7
--- a/Interval.st	Fri Mar 25 06:29:08 2016 +0000
+++ b/Interval.st	Sat Mar 26 07:56:10 2016 +0000
@@ -260,7 +260,7 @@
 !Interval methodsFor:'converting-reindexed'!
 
 from:startIndex
-    "return a new collection representing the receivers elements starting at startIndex."
+    "return a new collection representing the receiver's elements starting at startIndex."
 
     step == 1 ifTrue:[
         ^ start+startIndex-1 to:stop
@@ -278,7 +278,7 @@
 !
 
 to:endIndex
-    "return a new collection representing the receivers elements upTo and including endIndex."
+    "return a new collection representing the receiver's elements upTo and including endIndex."
 
     ^ start to:(endIndex min:stop) by:step