#DOCUMENTATION by exept
authorClaus Gittinger <cg@exept.de>
Sun, 27 Oct 2019 10:31:58 +0100
changeset 19223 aedeefb34f99
parent 19222 a46e0f77f600
child 19224 2bc390828a2c
#DOCUMENTATION by exept class: FileBrowser comment/format in: #fileTypeSpecificActions
FileBrowser.st
--- a/FileBrowser.st	Fri Oct 18 10:59:41 2019 +0200
+++ b/FileBrowser.st	Sun Oct 27 10:31:58 2019 +0100
@@ -6678,7 +6678,7 @@
     "any special fileTypeSpecific actions are done here,
      when a new file is selected"
 
-    |commentStrings parentesisSpec|
+    |commentStrings parenthesesSpec|
 
     commentStrings := MIMETypes 
                         commentStringsForFilename:currentFileName
@@ -6690,7 +6690,7 @@
         subView perform:#commentStrings: with:commentStrings ifNotUnderstood:nil
     ].
 
-    parentesisSpec := MIMETypes 
+    parenthesesSpec := MIMETypes 
                         parenthesisSpecForFilename:currentFileName 
                         ifUnknown:[
                             |spec|
@@ -6700,8 +6700,8 @@
                             spec
                         ]. 
 
-    parentesisSpec notNil ifTrue:[
-        subView perform:#parenthesisSpecification: with:parentesisSpec ifNotUnderstood:nil
+    parenthesesSpec notNil ifTrue:[
+        subView perform:#parenthesisSpecification: with:parenthesesSpec ifNotUnderstood:nil
     ].
 
     "Modified: / 10-04-2007 / 15:26:40 / cg"