StandardSystemView.st
changeset 7693 8616988317db
parent 7668 7d36ebfb49c9
child 7716 3dba89415c91
child 7849 ad44552af12c
--- a/StandardSystemView.st	Wed Nov 23 14:09:02 2016 +0100
+++ b/StandardSystemView.st	Wed Nov 23 14:09:35 2016 +0100
@@ -681,7 +681,7 @@
 !StandardSystemView methodsFor:'accessing-dimensions'!
 
 maxExtent
-    "return the views maximum allowed extent"
+    "return the view's maximum allowed extent"
 
     ^ maxExtent
 !
@@ -718,7 +718,7 @@
 !
 
 minExtent
-    "return the views minimum allowed extent"
+    "return the view's minimum allowed extent"
 
     ^ minExtent
 !
@@ -850,7 +850,7 @@
 !
 
 label
-    "return the views name in the title area"
+    "return the view's name in the title area"
 
     ^ label
 !
@@ -1283,11 +1283,11 @@
 
 printOn:aStream
     "just for your convenience in inspectors ...
-     ... add the views label to the displayString."
+     ... add the view's label to the displayString."
 
     super printOn:aStream.
     label notNil ifTrue:[
-	aStream nextPut:$(.  label printOn:aStream. aStream nextPut:$).
+        aStream nextPut:$(.  label printOn:aStream. aStream nextPut:$).
     ].
 ! !