Filename.st
changeset 3753 20eb9177749b
parent 3752 cbf9fa32eb28
child 3763 31d58d04ac15
--- a/Filename.st	Wed Aug 12 14:05:50 1998 +0200
+++ b/Filename.st	Wed Aug 12 14:46:17 1998 +0200
@@ -2795,19 +2795,22 @@
 !
 
 osNameForDirectory
-    "special - return the OS's name for the receiver to
+    "internal - return the OS's name for the receiver to
      access it as a directory."
 
     ^ nameString
+
+    "Modified: / 12.8.1998 / 14:44:32 / cg"
 !
 
 osNameForDirectoryContents
-    "special - return the OS's name for the receiver to
+    "internal - return the OS's name for the receiver to
      access it as a directory when reading its contents."
 
     ^ self osNameForDirectory
 
     "Created: / 3.8.1998 / 21:36:06 / cg"
+    "Modified: / 12.8.1998 / 14:44:34 / cg"
 !
 
 osNameForFile
@@ -2946,6 +2949,6 @@
 !Filename class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Filename.st,v 1.128 1998-08-12 12:05:50 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Filename.st,v 1.129 1998-08-12 12:46:17 cg Exp $'
 ! !
 Filename initialize!