class: Autoload
authorClaus Gittinger <cg@exept.de>
Sat, 27 Jul 2013 15:52:45 +0200
changeset 15563 932f9fc3597c
parent 15562 03361352367b
child 15564 a7886abbf6c4
class: Autoload comment/format in: #isLoaded wether -> whether (lookup what wether is ;-)
Autoload.st
--- a/Autoload.st	Sat Jul 27 10:46:36 2013 +0200
+++ b/Autoload.st	Sat Jul 27 15:52:45 2013 +0200
@@ -766,11 +766,12 @@
 isLoaded
     "return true, if the class has been loaded.
      Autoload itself is loaded, subclasses are not.
-     This allows testing wether a class has already been loaded."
+     This allows testing whether a class has already been loaded."
 
     ^ (self == Autoload)
 
-    "Modified: / 16.2.1998 / 11:57:35 / stefan"
+    "Modified: / 16-02-1998 / 11:57:35 / stefan"
+    "Modified (comment): / 27-07-2013 / 15:35:01 / cg"
 !
 
 loadedClasses
@@ -827,11 +828,11 @@
 !Autoload class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.165 2013-05-13 13:41:06 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.166 2013-07-27 13:52:45 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.165 2013-05-13 13:41:06 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.166 2013-07-27 13:52:45 cg Exp $'
 ! !