renamed Interrest <-> Interest
authorClaus Gittinger <cg@exept.de>
Thu, 07 Mar 1996 11:10:28 +0100
changeset 1075 52d0a9cbd2d7
parent 1074 e20967eee4bd
child 1076 0bfb3317718b
renamed Interrest <-> Interest
Object.st
--- a/Object.st	Thu Mar 07 11:09:17 1996 +0100
+++ b/Object.st	Thu Mar 07 11:10:28 1996 +0100
@@ -1056,24 +1056,24 @@
      changes.
      This is redefined in the ValueModel class for a more efficient implementation."
 
-    "/ for now, use an interrestConverter, which is somewhat less efficient.
+    "/ for now, use an interestConverter, which is somewhat less efficient.
     "/ In the future, a more intelligent DependencyCollection class is planned for
 
-    self addDependent:(InterrestConverter destination:anObject selector:aSelector)
+    self addDependent:(InterestConverter destination:anObject selector:aSelector)
 
     "Modified: 7.3.1996 / 10:58:44 / cg"
 !
 
 retractInterestsFor:someOne
-    "remove the interrest of someOne in the receiver 
+    "remove the interest of someOne in the receiver 
      (as installed with #onChangeSend:to:).
      This is redefined in the ValueModel class for a more efficient implementation."
 
-    "/ for now, remove the interrestConverter.
+    "/ for now, remove the interestConverter.
     "/ In the future, a more intelligent DependencyCollection class is planned for
 
     self dependentsDo:[:dep |
-        (dep isMemberOf:InterrestConverter) ifTrue:[
+        (dep isMemberOf:InterestConverter) ifTrue:[
             dep destination == someOne ifTrue:[
                 self removeDependent:dep.
                 ^ self
@@ -4339,6 +4339,6 @@
 !Object class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Object.st,v 1.96 1996-03-07 10:04:28 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Object.st,v 1.97 1996-03-07 10:10:28 cg Exp $'
 ! !
 Object initialize!