Coll.st
changeset 213 3b56a17534fd
parent 201 1deff0d47f37
child 244 9faa2da0650a
--- a/Coll.st	Wed Nov 23 00:02:57 1994 +0100
+++ b/Coll.st	Mon Nov 28 21:34:28 1994 +0100
@@ -21,7 +21,7 @@
 COPYRIGHT (c) 1989 by Claus Gittinger
 	      All Rights Reserved
 
-$Header: /cvs/stx/stx/libbasic/Attic/Coll.st,v 1.19 1994-11-17 14:12:25 claus Exp $
+$Header: /cvs/stx/stx/libbasic/Attic/Coll.st,v 1.20 1994-11-28 20:32:40 claus Exp $
 '!
 
 !Collection class methodsFor:'documentation'!
@@ -42,7 +42,7 @@
 
 version
 "
-$Header: /cvs/stx/stx/libbasic/Attic/Coll.st,v 1.19 1994-11-17 14:12:25 claus Exp $
+$Header: /cvs/stx/stx/libbasic/Attic/Coll.st,v 1.20 1994-11-28 20:32:40 claus Exp $
 "
 !
 
@@ -452,7 +452,7 @@
 !
 
 max
-    "return the maximum value in the recevier collection"
+    "return the maximum value in the receiver collection"
 
     ^ self inject:nil
 	    into:[:maxSoFar :this | 
@@ -467,7 +467,7 @@
 !
 
 min
-    "return the minimum value in the recevier collection"
+    "return the minimum value in the receiver collection"
 
     ^ self inject:nil
 	    into:[:minSoFar :this |