#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Fri, 04 Nov 2016 16:33:39 +0100
changeset 20823 73e7da80f87c
parent 20822 a41b72875124
child 20824 4036277080eb
#DOCUMENTATION by cg class: Behavior comment/format in: #implements:
Behavior.st
--- a/Behavior.st	Fri Nov 04 16:32:26 2016 +0100
+++ b/Behavior.st	Fri Nov 04 16:33:39 2016 +0100
@@ -4780,14 +4780,14 @@
      This is semantically equivalent to includesSelector: (which is ST/80/Squeak compatibility).
 
      Caveat:
-	This simply checks for the selector being present in the classes
-	selector table - therefore, it does not care for ignoredMethods.
-	(but: you should not use this method for protocol-testing, anyway).
+        This simply checks for the selector being present in the classes
+        selector table - therefore, it does not care for ignoredMethods.
+        (but: you should not use this method for protocol-testing, anyway).
 
      Hint:
-	Dont use this method to check if someone responds to a message -
-	use #canUnderstand: on the class or #respondsTo: on the instance
-	to do this."
+        Don't use this method to check if someone responds to a message -
+        use #canUnderstand: on the class or #respondsTo: on the instance
+        to do this."
 
     ^ self includesSelector:aSelector