FontDescription.st
branchjv
changeset 7244 9c77b73e65d8
parent 7223 bce4cd6c45cd
parent 7239 fc6eccef933b
child 7364 262ab56176cb
--- a/FontDescription.st	Fri Mar 25 06:53:38 2016 +0100
+++ b/FontDescription.st	Sat Mar 26 06:44:50 2016 +0100
@@ -1060,7 +1060,7 @@
 !
 
 asFontWithPixelSize:anotherSize
-    "return another font corresponding to the receivers family, face and style but
+    "return another font corresponding to the receiver's family, face and style but
      with another pixel size"
 
     |newFont|
@@ -1089,7 +1089,7 @@
 !
 
 asPixelSize:anotherSize
-    "return another font corresponding to the receivers family, face and style but
+    "return another font corresponding to the receiver's family, face and style but
      with another pixel size"
 
     |newFont|
@@ -1111,7 +1111,7 @@
 !
 
 asSize:anotherSize
-    "return another font corresponding to the receivers family, face and style but
+    "return another font corresponding to the receiver's family, face and style but
      with another size"
 
     |newFont|
@@ -1441,7 +1441,7 @@
 !
 
 existsOn:aDevice
-    "return true, if the recevier is available on aDevice;
+    "return true, if the receiver is available on aDevice;
      false otherwise. This is a kludge method; its better to
      ask a device for its available fonts and use this info ...
      Notice, that if you simply use a font by name, the system
@@ -1683,7 +1683,7 @@
 !FontDescription methodsFor:'queries-encoding'!
 
 isASCII
-    "return true, if the receivers encoding is
+    "return true, if the receiver's encoding is
      compatible with ascii (i.e. its ascii or iso8859)"
 
     ^ (encoding == #iso8859) or:[encoding == #ascii]
@@ -1693,7 +1693,7 @@
 !
 
 isISO8859
-    "return true, if the receivers encoding is
+    "return true, if the receiver's encoding is
      compatible with iso8859 (i.e. iso8859)"
 
     ^ encoding == #iso8859
@@ -1703,7 +1703,7 @@
 !
 
 isJIS
-    "return true, if the receivers encoding is
+    "return true, if the receiver's encoding is
      compatible with jis (i.e. jisXXX)"
 
     ^ (encoding startsWith:'jis')