Smalltalk.st
changeset 9014 f4df89a42724
parent 9012 43ef70cac099
child 9015 75c9c0cc990b
--- a/Smalltalk.st	Thu Dec 15 10:07:47 2005 +0100
+++ b/Smalltalk.st	Thu Dec 15 14:07:46 2005 +0100
@@ -191,22 +191,22 @@
         UI-look specifics such as icons etc.
 
     Where are resources stored in the image:
-        Resource files are only read on deman (i.e. when needed) and only read once 
-        i.e. they are cahced in the image).
+        Resource files are only read on demand (i.e. when needed) and only read once 
+        i.e. they are cached in the image).
         The cached data is held in a per-class class-instVar named 'ClassResources'.
         With only a few exceptions, the only classes which need resources are the GUI
-        classes under the SimpleView class.
+        classes under the SimpleView hierarchy.
 
     How does the system find resources:
         The idea is that the system-provided resource files can be overwritten
         by the user or an application configuration.
         This works via a hierarchy of directories where resources are searched for,
-        with the systems resource-files being at the end of that chain.
+        with the systems standard resource-files being at the end of that chain.
 
         When searching for a resource file for class X, the following files are searched 
         in order:
                 {ResourcePath} / resources / X.rs       
-                {SystemPathPath} / (CLASSES-PACKAGE-PATH) / X.rs       
+                {SystemPath} / (CLASSES-PACKAGE-PATH) / X.rs       
                 {ResourcePath} / (CLASSES-PACKAGE-PATH) / X.rs       
 "
 ! !
@@ -6480,5 +6480,5 @@
 !Smalltalk class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Smalltalk.st,v 1.688 2005-12-14 16:27:51 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Smalltalk.st,v 1.689 2005-12-15 13:07:46 cg Exp $'
 ! !