Character.st
changeset 7799 99753997e677
parent 7715 0e69a830f5d8
child 7897 08fd96f5c1d2
--- a/Character.st	Fri Dec 05 16:47:45 2003 +0100
+++ b/Character.st	Fri Dec 05 20:39:54 2003 +0100
@@ -642,13 +642,13 @@
 !Character methodsFor:'comparing'!
 
 < aCharacter
-    "return true, if the arguments asciiValue is greater than mine"
+    "return true, if the arguments asciiValue is greater than the receiver's"
 
     ^ (asciivalue < aCharacter asInteger)
 !
 
 <= aCharacter
-    "return true, if the arguments asciiValue is greater or equal to mine"
+    "return true, if the arguments asciiValue is greater or equal to the receiver's"
 
     ^ (asciivalue <= aCharacter asInteger)
 !
@@ -663,13 +663,13 @@
 !
 
 > aCharacter
-    "return true, if the arguments asciiValue is less than mine"
+    "return true, if the arguments asciiValue is less than the receiver's"
 
     ^ (asciivalue > aCharacter asInteger)
 !
 
 >= aCharacter
-    "return true, if the arguments asciiValue is less or equal to mine"
+    "return true, if the arguments asciiValue is less or equal to the receiver's"
 
     ^ (asciivalue >= aCharacter asInteger)
 !
@@ -1434,5 +1434,5 @@
 !Character class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Character.st,v 1.90 2003-10-28 20:28:36 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Character.st,v 1.91 2003-12-05 19:39:54 cg Exp $'
 ! !