#DOCUMENTATION by mawalch
authormawalch
Mon, 21 Nov 2016 11:59:18 +0100
changeset 4048 e3c3a9e1f3a9
parent 4047 70b52dcebe6b
child 4049 3fcfb25c58f5
#DOCUMENTATION by mawalch class: ParserFlags comment/format in: #initialize typo
ParserFlags.st
--- a/ParserFlags.st	Sun Nov 20 23:11:25 2016 +0100
+++ b/ParserFlags.st	Mon Nov 21 11:59:18 2016 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1989 by Claus Gittinger
  COPYRIGHT (c) 2005 by eXept Software AG
@@ -913,7 +915,7 @@
 !
 
 allowParagraphInIdentifier
-    "return true, if §-characters are allowed in identifiers (treated as letter)"
+    "return true, if §-characters are allowed in identifiers (treated as letter)"
 
     ^ AllowParagraphInIdentifier
 
@@ -921,7 +923,7 @@
 !
 
 allowParagraphInIdentifier:aBoolean
-    "this allows turning on/off §-characters in identifiers."
+    "this allows turning on/off §-characters in identifiers."
 
     AllowParagraphInIdentifier := aBoolean.
 
@@ -1452,7 +1454,7 @@
 !
 
 warnParagraphInIdentifier
-    "return true, if §-characters in identifiers are to be warned about"
+    "return true, if §-characters in identifiers are to be warned about"
 
     ^ Warnings and:[WarnParagraphInIdentifier]
 
@@ -1460,7 +1462,7 @@
 !
 
 warnParagraphInIdentifier:aBoolean
-    "this allows turning on/off warnings about §-characters in identifiers.
+    "this allows turning on/off warnings about §-characters in identifiers.
      You may find those warnings useful, to make certain that your code
      is portable to other Smalltalk versions, which do not allow this"
 
@@ -1701,7 +1703,7 @@
     ].
     
     topDir isNil ifTrue:[
-        "/ try standard installation pathes...
+        "/ try standard installation paths...
         OperatingSystem isOSXlike ifTrue:[
             |appDir parentDir|