class: Collection
authorClaus Gittinger <cg@exept.de>
Fri, 21 Dec 2012 12:58:02 +0100
changeset 14614 6b02772b261d
parent 14613 a263aaa13092
child 14615 4e5318533a06
class: Collection comment/format in:6 methods typos
Collection.st
--- a/Collection.st	Fri Dec 21 12:55:57 2012 +0100
+++ b/Collection.st	Fri Dec 21 12:58:02 2012 +0100
@@ -1612,7 +1612,7 @@
 !
 
 asSortedStrings
-    "Create & return a SortedCollection that sorts the receivers
+    "Create & return a SortedCollection that sorts the receiver's
      elements according to the locales collating policy.
      This is currently not really support - strings are sorted
      without caring for the locale."
@@ -1628,7 +1628,7 @@
 !
 
 asSortedStrings:sortBlock
-    "Create & return a SortedCollection that sorts the receivers
+    "Create & return a SortedCollection that sorts the receiver's
      elements using sortBlock and according to the locales collating policy,
      which is passed as first arg to sortBlock.
      This is currently not really support - strings are sorted
@@ -1646,7 +1646,7 @@
 !
 
 asSortedStrings:sortBlock with:aCollationPolicy
-    "Create & return a SortedCollection that sorts the receivers
+    "Create & return a SortedCollection that sorts the receiver's
      elements using sortBlock and according to the specified locales collating policy.
      This is currently not really support - strings are sorted
      without caring for the locale."
@@ -1663,7 +1663,7 @@
 !
 
 asSortedStringsWith: aCollationPolicy
-    "Create & return a SortedCollection that sorts the receivers
+    "Create & return a SortedCollection that sorts the receiver's
      elements according to the specified locales collating policy.
      This is currently not really support - strings are sorted
      without caring for the locale."
@@ -3236,7 +3236,7 @@
 !
 
 grow:howBig
-    "change the receivers size"
+    "change the receiver's size"
 
     ^ self subclassResponsibility
 !
@@ -4294,8 +4294,8 @@
 !
 
 isEmptyOrNil
-    "return true if I am nil or an empty collection - true here, if the receivers size is 0,
-     (from Sqeak)"
+    "return true if I am nil or an empty collection - true here, if the receiver's size is 0,
+     (from Squeak)"
 
     ^ self isEmpty
 
@@ -4455,11 +4455,11 @@
 !Collection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Collection.st,v 1.285 2012-12-19 09:24:31 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Collection.st,v 1.286 2012-12-21 11:58:02 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/Collection.st,v 1.285 2012-12-19 09:24:31 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Collection.st,v 1.286 2012-12-21 11:58:02 cg Exp $'
 ! !