#DOCUMENTATION by Maren
authormatilk
Thu, 14 Apr 2016 13:46:39 +0200
changeset 19583 af9f1124bd5a
parent 19582 fed14e56c228
child 19584 93b5d5bae94c
#DOCUMENTATION by Maren class: Object comment/format in: #changed:with: typo
Object.st
--- a/Object.st	Thu Apr 14 12:55:00 2016 +0200
+++ b/Object.st	Thu Apr 14 13:46:39 2016 +0200
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1988 by Claus Gittinger
 	      All Rights Reserved
@@ -258,6 +256,7 @@
     "Modified: / 4.8.1999 / 08:54:06 / stefan"
 ! !
 
+
 !Object class methodsFor:'Compatibility-ST80'!
 
 rootError
@@ -496,6 +495,7 @@
     InfoPrinting := aBoolean
 ! !
 
+
 !Object class methodsFor:'queries'!
 
 isAbstract
@@ -519,6 +519,8 @@
 
 
 
+
+
 !Object methodsFor:'Compatibility-Dolphin'!
 
 stbFixup: anSTBInFiler at: newObjectIndex
@@ -1749,6 +1751,8 @@
     "
 ! !
 
+
+
 !Object methodsFor:'attributes access'!
 
 objectAttributeAt:attributeKey
@@ -1871,6 +1875,7 @@
 ! !
 
 
+
 !Object methodsFor:'change & update'!
 
 broadcast:aSelectorSymbol
@@ -1972,11 +1977,11 @@
 
 changed:aParameter with:anArgument
     "notify all dependents that the receiver has changed somehow.
-     Each dependent gets a  '#update:with:from:'-message, with aParameter
+     Each dependent gets an '#update:with:from:'-message, with aParameter
      and anArgument as arguments."
 
     self dependentsDo:[:dependent |
-	dependent update:aParameter with:anArgument from:self
+        dependent update:aParameter with:anArgument from:self
     ]
 !
 
@@ -2051,6 +2056,7 @@
     ^ aBlock ensure:[ self addDependent:someone ]
 ! !
 
+
 !Object methodsFor:'comparing'!
 
 = anObject
@@ -7975,6 +7981,7 @@
     ^ self
 ! !
 
+
 !Object methodsFor:'secure message sending'!
 
 ?:selector
@@ -8580,6 +8587,7 @@
     "
 ! !
 
+
 !Object methodsFor:'synchronized evaluation'!
 
 freeSynchronizationSemaphore
@@ -10338,6 +10346,9 @@
     ^ aVisitor visitObject:self with:aParameter
 ! !
 
+
+
+
 !Object class methodsFor:'documentation'!
 
 version