ClassCategoryReader.st
changeset 22394 1f5a6e985b37
parent 21420 4e4f34a19c8c
--- a/ClassCategoryReader.st	Wed Dec 13 23:19:06 2017 +0100
+++ b/ClassCategoryReader.st	Mon Dec 18 10:11:31 2017 +0100
@@ -53,7 +53,7 @@
 
         #reference       - keep a reference to the loaded files basename
                            In order to be browsable, the original sourcefile should be
-                           found along the sourcePath 
+                           found along the sourcePath
                            (i.e. typically a link in the source directory should be present)
 
         #absReference    - keep a reference to the loaded files absolute pathname
@@ -61,7 +61,7 @@
                            (this is ok in multiUser configurations, where all sourcefiles are mounted
                            on a common path; typically automounted systems)
 
-        #forceAbsReference 
+        #forceAbsReference
                          - like above, but also do it for files not ending with .st.
                            Must be used with care - NEVER ever reference sources from the changes
                            file, because the changesBrowser does not adjust methods sources
@@ -190,16 +190,17 @@
      errors and notifications are passed to requestor.
      If passChunk is true, chunks are given to the requestor,
      via a #source: message, allowing it to open a view showing any
-     arronous source code."
+     erroneous source code."
 
     ^ self
-        fileInFrom:aStream 
-        notifying:requestor 
-        passChunk:passChunk 
+        fileInFrom:aStream
+        notifying:requestor
+        passChunk:passChunk
         single:false
         silent:nil
 
-    "Modified: / 17.5.1998 / 19:58:15 / cg"
+    "Modified: / 17-05-1998 / 19:58:15 / cg"
+    "Modified (comment): / 18-12-2017 / 10:10:21 / mawalch"
 !
 
 fileInFrom:aStream notifying:requestor passChunk:passChunk single:oneChunkOnly