#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Tue, 15 May 2018 18:10:06 +0200
changeset 22935 21b27365d08b
parent 22934 47470775327e
child 22936 eb7c7748e568
#DOCUMENTATION by cg class: Behavior comment/format in: #addChangeRecordForClassRemove: #readBinaryFrom: #readFrom:
Behavior.st
--- a/Behavior.st	Tue May 15 18:09:27 2018 +0200
+++ b/Behavior.st	Tue May 15 18:10:06 2018 +0200
@@ -2015,8 +2015,8 @@
 addChangeRecordForClassRemove:aClassName
      "add a change record that some class has been removed.
       Defined as dummy here, since Behavior does not know about change management.
-      (only Classes do). This allows different Behavior-like  objects
-      (alien classes) to be handled by the browser as well."
+      (only Classes do). This allows different Behavior-like  
+      objects (alien classes) to be handled by the browser as well."
 
     "Created: 16.4.1996 / 16:30:09 / cg"
     "Modified: 16.4.1996 / 18:10:35 / cg"
@@ -2974,20 +2974,20 @@
 !
 
 readFrom:aStream
-    "read an objects printed representation from the argument, aStream
+    "read an object's printed representation from the argument, aStream
      and return it.
      The read object must be a kind of myself;
      if it's not, an error is raised.
      This is the reverse operation to 'storeOn:'.
 
      WARNING: storeOn: does not handle circular references and multiple
-	      references to the same object.
-	      Use #storeBinary:/readBinaryFrom: for this."
+              references to the same object.
+              Use #storeBinary:/readBinaryFrom: for this."
 
     ^ self
-	readFrom:aStream
-	onError:[ self conversionErrorSignal
-		    raiseWith:aStream errorString:' for: ' , self name ]
+        readFrom:aStream
+        onError:[ self conversionErrorSignal
+                    raiseWith:aStream errorString:' for: ' , self name ]
 
     "
      |s|