#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Thu, 22 Sep 2016 15:02:18 +0200
changeset 7579 0861654a1257
parent 7578 91189b5e373e
child 7580 1c51d1d76b32
#DOCUMENTATION by cg class: BitmapFont comment/format in: #maxAscent #maxDescent #maxHeight
BitmapFont.st
--- a/BitmapFont.st	Thu Sep 22 13:19:51 2016 +0200
+++ b/BitmapFont.st	Thu Sep 22 15:02:18 2016 +0200
@@ -550,8 +550,8 @@
 !
 
 maxAscent
-    "return the maximum ascent; thats the ascent of the highest
-     character"
+    "return the maximum ascent; 
+     that's the ascent of the highest character"
 
     ascent isNil ifTrue:[
         ascent := (self maxHeight - self descent) max:0
@@ -560,8 +560,8 @@
 !
 
 maxDescent
-    "return the maximum descent; thats the descent of the highest
-     character"
+    "return the maximum descent; 
+     that's the descent of the highest character"
 
     descent isNil ifTrue:[
         descent := (self maxHeight - ascent) max:0
@@ -570,8 +570,8 @@
 !
 
 maxHeight
-    "return the maximum height; thats the height of the highest
-     character"
+    "return the maximum height; 
+     that's the height of the highest character"
 
     ^ maxHeight ? 0
 !