GraphicsContext.st
branchjv
changeset 7244 9c77b73e65d8
parent 7036 530b3e1c64c3
parent 7240 a89267cf99b4
child 7290 a8acc06e57e4
--- a/GraphicsContext.st	Fri Mar 25 06:53:38 2016 +0100
+++ b/GraphicsContext.st	Sat Mar 26 06:44:50 2016 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1992 by Claus Gittinger
 	      All Rights Reserved
@@ -635,7 +633,7 @@
 
 widthOfString:aString
     "given a string, return its width in pixels if
-     drawn on the receivers device."
+     drawn on the receiver's device."
 
     ^ (font onDevice:device) widthOf:aString
 
@@ -644,7 +642,7 @@
 
 widthOfString:aString from:start to:stop
     "given a string, return the width in pixels if
-     a substring is drawn on the receivers device."
+     a substring is drawn on the receiver's device."
 
     ^ (font onDevice:device) widthOf:aString from:start to:stop