comments (english)
authorClaus Gittinger <cg@exept.de>
Wed, 12 Dec 2001 11:39:19 +0100
changeset 1548 3fde64e5dc4d
parent 1547 d58f1d9cbd85
child 1549 1b5274878f87
comments (english)
ApplicationModel.st
--- a/ApplicationModel.st	Wed Dec 12 10:48:56 2001 +0100
+++ b/ApplicationModel.st	Wed Dec 12 11:39:19 2001 +0100
@@ -2201,8 +2201,8 @@
 
 resolveClassNamed:something inClass:aClass
     "return the class from something, a class, symbol, string or nil.
-     first we are looking in the namespace of the application, than of the
-     current namespace and than in Smalltalk
+     first we are looking in the namespace of the application, then in the
+     current namespace and finally in Smalltalk
     "
 
     ^ Smalltalk resolveName:something inClass:aClass.
@@ -2210,16 +2210,16 @@
 
 resolveName:something
     "return the class from something, a class, symbol, string or nil.
-     first we are looking in the namespace of the application, than of the
-     current namespace and than in Smalltalk
+     first we are looking in the namespace of the application, then in the
+     current namespace and finally in Smalltalk
     "
     ^ self resolveName:something inClass:self class
 !
 
 resolveName:something inClass:aClass
     "return the class from something, a class, symbol, string or nil.
-     first we are looking in the namespace of the application, than of the
-     current namespace and than in Smalltalk
+     first we are looking in the namespace of the application, 
+     then in the current namespace and finally in Smalltalk
     "
     |cls|
 
@@ -2591,6 +2591,6 @@
 !ApplicationModel class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/ApplicationModel.st,v 1.164 2001-12-08 00:37:27 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/ApplicationModel.st,v 1.165 2001-12-12 10:39:19 cg Exp $'
 ! !
 ApplicationModel initialize!