SystemBrowser.st
changeset 18705 dea38d56c6e3
parent 18615 eb18306788b0
child 18807 142bba6ab3be
--- a/SystemBrowser.st	Wed Mar 20 17:19:43 2019 +0100
+++ b/SystemBrowser.st	Wed Mar 20 17:20:50 2019 +0100
@@ -4873,10 +4873,15 @@
 
 findInstRefsTo:aString under:aClass access:accessType
     "return all methods in aClass and subclasses
-     where the classVar named aString is referenced; 
+     where the instVar named aString is referenced; 
      if modsOnly is true, browse only methods where the classvar is modified"
 
-    ^ self findInstRefsTo:aString in:(aClass withAllSubclasses) access:accessType
+    ^ self 
+        findInstRefsTo:aString 
+        in:(aClass withAllSubclasses) 
+        access:accessType
+
+    "Modified (comment): / 20-03-2019 / 17:11:47 / Claus Gittinger"
 !
 
 findInstRefsTo:aString under:aClass modificationsOnly:modsOnly