#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Fri, 14 Oct 2016 21:33:15 +0200
changeset 20670 5a948d181ab6
parent 20669 4f391c2a9e9c
child 20671 dd3cd0018844
#DOCUMENTATION by cg class: StandaloneStartup comment/format in: #verbose #verboseInfo:
StandaloneStartup.st
--- a/StandaloneStartup.st	Fri Oct 14 21:32:54 2016 +0200
+++ b/StandaloneStartup.st	Fri Oct 14 21:33:15 2016 +0200
@@ -427,7 +427,7 @@
 !
 
 verbose
-    "true iff expecco was started with --verbose flag"
+    "true iff the program was started with --verbose flag"
     
     ^ Verbose == true
 
@@ -435,7 +435,7 @@
 !
 
 verboseInfo:msg
-    "output some message, but only if exepcco was started with --verbose"
+    "output some message, but only if the program was started with --verbose"
     
     Verbose == true ifTrue:[
         self printInfo:msg