Autoload.st
changeset 7280 7afcccb7c856
parent 7178 2217cc44b048
child 7574 8041a5795bbf
--- a/Autoload.st	Fri May 09 17:54:24 2003 +0200
+++ b/Autoload.st	Fri May 09 18:11:22 2003 +0200
@@ -52,7 +52,7 @@
 
     When started, the patches startup script arranges for the abbreviation
     file 'include/abbrev.stc' to be read and installs autoload stubs for
-    all classes listed in that file, which do not exists already.
+    all classes listed in that file, which do not exist already.
     The abbreviation file is maintained by the production environment
     and updated by makefile rules - therefore, it should not be edited
     manually.
@@ -62,25 +62,25 @@
 
     [class variables:]
         
-	LazyLoading             <Boolean>       if true, the loaded classes 
-						methods will NOT be compiled at 
-						autoload time, but instead when 
-						first called. This allows for a 
-						faster load. However, expect short 
-						pauses later when the methods are
-						first executed.
+        LazyLoading             <Boolean>       if true, the loaded classes 
+                                                methods will NOT be compiled at 
+                                                autoload time, but instead when 
+                                                first called. This allows for a 
+                                                faster load. However, expect short 
+                                                pauses later when the methods are
+                                                first executed.
                                      
-	AutoloadFailedSignal    <Signal>        signal raised if an autoloaded 
-						classes source is not available.
+        AutoloadFailedSignal    <Signal>        signal raised if an autoloaded 
+                                                classes source is not available.
 
-	LoadedClasses           <Collection>    set of classes that heve been
-						autoloaded (for later unload)
+        LoadedClasses           <Collection>    set of classes that heve been
+                                                autoloaded (for later unload)
 
     [see also:]
-	Smalltalk
+        Smalltalk
 
     [author:]
-	Claus Gittinger
+        Claus Gittinger
 "
 ! !
 
@@ -640,7 +640,7 @@
 !Autoload class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.117 2003-04-09 11:02:09 james Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.118 2003-05-09 16:11:22 stefan Exp $'
 ! !
 
 Autoload initialize!