Autoload.st
changeset 1278 7ef5a312d87e
parent 1277 7acd342fb251
child 1292 89497fff7f87
--- a/Autoload.st	Wed Apr 24 19:54:47 1996 +0200
+++ b/Autoload.st	Wed Apr 24 19:55:17 1996 +0200
@@ -43,21 +43,21 @@
     Late addition: above comment is no longer true - I have made now almost
     all Demos & Goodies be autoloaded ... even for big systems.
 
-    class variables:
+    [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)
 "
 ! !
 
@@ -440,6 +440,6 @@
 !Autoload class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.45 1996-04-24 17:54:47 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.46 1996-04-24 17:55:17 cg Exp $'
 ! !
 Autoload initialize!