Tools__MethodCategoryList.st
branchjv
changeset 16156 9b9fa51009d2
parent 16074 c2698f7a8a6d
parent 16150 1804ff3089d4
child 16571 cf319f2e56d0
--- a/Tools__MethodCategoryList.st	Wed Mar 09 06:56:29 2016 +0100
+++ b/Tools__MethodCategoryList.st	Thu Mar 10 06:57:38 2016 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2000 by eXept Software AG
               All Rights Reserved
@@ -1180,15 +1182,15 @@
 !
 
 class:cls protocol:cat includesRefsToVariable:variablesToHighLight askParserWith:querySelector
-    "are there any methods in the protocol cat which reference/modify any inst/class variable in variablesToHighLight ?"
+    "Are there any methods in the protocol cat which reference/modify any inst/class variable in variablesToHighLight?"
 
-    |anyVarNameAccessable|
+    |anyVarNameAccessible|
 
-    anyVarNameAccessable := cls allInstVarNames includesAny:variablesToHighLight.
-    anyVarNameAccessable ifFalse:[
-        anyVarNameAccessable := cls theNonMetaclass allClassVarNames includesAny:variablesToHighLight.
+    anyVarNameAccessible := cls allInstVarNames includesAny:variablesToHighLight.
+    anyVarNameAccessible ifFalse:[
+        anyVarNameAccessible := cls theNonMetaclass allClassVarNames includesAny:variablesToHighLight.
     ].
-    anyVarNameAccessable ifFalse:[
+    anyVarNameAccessible ifFalse:[
         "/ no need to parse
         ^ false
     ].