#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Fri, 04 Nov 2016 15:50:11 +0100
changeset 20783 6f62e6e4cd7e
parent 20782 244d04a859e2
child 20784 649cf068fc09
#DOCUMENTATION by cg class: ClassBuilder comment/format in: #buildClass #checkValidVarNamesFor:subClassOf:instVarNames:classVarNames: #handleEasyNewClass: #handleHardNewClass:
ClassBuilder.st
--- a/ClassBuilder.st	Fri Nov 04 15:50:03 2016 +0100
+++ b/ClassBuilder.st	Fri Nov 04 15:50:11 2016 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 2001 by eXept Software AG
               All Rights Reserved
@@ -459,7 +457,7 @@
 
     "NOTICE:
      this method is too complex and should be splitted into managable pieces ...
-     I dont like it anymore :-) 
+     I don't like it anymore :-) 
      (well, at least, its a good test for the compilers ability 
       to handle big, complex methods ;-)
      take it as an example of bad coding style ...
@@ -601,7 +599,7 @@
     "/ - thus, once confirmed, the warnings will not come again and again.
 
     "/ NOTICE:
-    "/ I dont like the confirmers there - we need a notifying: argument, to give
+    "/ I don't like the confirmers there - we need a notifying: argument, to give
     "/ the outer codeview a chance to highlight the error.
     "/ (but that's how its defined in the book - maybe I will change anyway).
     "/ - or use upQueries in future versions.
@@ -1245,7 +1243,7 @@
         "/ recompile all methods accessing set of changed classvars
         "/ here and also in all subclasses ...
 
-        "/ dont update change file for the recompilation
+        "/ don't update change file for the recompilation
 
         Class withoutUpdatingChangesDo:[
 
@@ -1324,7 +1322,7 @@
 
 "/    "/ update superclass of immediate subclasses - 
 "/    "/ this forces recompilation (recursively) if needed
-"/    "/ (dont update change file for the subclass changes)
+"/    "/ (don't update change file for the subclass changes)
 "/
 "/    Class classRedefinitionNotification answer:#keep do:[
 "/        Class withoutUpdatingChangesDo:[
@@ -1365,7 +1363,7 @@
 
     "/ update superclass of immediate subclasses - 
     "/ this forces recompilation (recursively) if needed
-    "/ (dont update change file for the subclass changes)
+    "/ (don't update change file for the subclass changes)
 
     Class classRedefinitionNotification answer:#keep do:[
         Class withoutUpdatingChangesDo:[
@@ -2349,7 +2347,7 @@
 checkValidVarNamesFor:className subClassOf:aClass instVarNames:instVarNameString classVarNames:classVarNameString
     "Check for some 'considered bad-style' things, like lower case names.
      NOTICE:
-     I dont like the confirmers below - we need a notifying: argument, or a
+     I don't like the confirmers below - we need a notifying: argument, or a
      notifierSignal to give the outer codeview a chance to highlight the error.
      (but that's how its defined in the book - maybe I will change it anyway).
     "