#DOCUMENTATION
authorClaus Gittinger <cg@exept.de>
Fri, 25 Mar 2016 17:09:17 +0100
changeset 3783 fcc30a3af3df
parent 3782 adf9bb41332e
child 3784 25519ee4239d
#DOCUMENTATION class: ReindexedCollection comment/format in: #from: #from:to: #to:
ReindexedCollection.st
--- a/ReindexedCollection.st	Fri Mar 25 17:09:03 2016 +0100
+++ b/ReindexedCollection.st	Fri Mar 25 17:09:17 2016 +0100
@@ -221,7 +221,7 @@
 !ReindexedCollection 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."
 
     interval step == 1 ifTrue:[
         ^ ReindexedCollection 
@@ -244,7 +244,7 @@
 !
 
 from:startIndex to:stopIndex
-    "return a new collection representing the receivers elements 
+    "return a new collection representing the receiver's elements 
      starting at startIndex upTo and including endIndex."
 
     interval step == 1 ifTrue:[
@@ -277,7 +277,7 @@
 !
 
 to:stopIndex
-    "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."
 
     interval step == 1 ifTrue:[
         ^ ReindexedCollection