StandardSystemView.st
branchjv
changeset 7716 3dba89415c91
parent 7715 925b859e1758
parent 7693 8616988317db
child 7856 7c52e7a9a087
--- a/StandardSystemView.st	Fri Nov 18 21:26:33 2016 +0000
+++ b/StandardSystemView.st	Thu Nov 24 21:55:24 2016 +0000
@@ -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:$).
     ].
 ! !