Filename.st
changeset 1286 4270a0b4917d
parent 1225 b7def4d21cb8
child 1317 cc737e0fdf48
--- a/Filename.st	Thu Apr 25 13:16:22 1996 +0200
+++ b/Filename.st	Thu Apr 25 18:02:18 1996 +0200
@@ -44,19 +44,28 @@
     for being correct or existing.
     Thus, it is possible to do queries such as:
 
-	'/fee/foo/foe' asFilename exists     
-	'/not_existing' asFilename isDirectory 
-	'/foo/bar' asFilename isReadable 
+        '/fee/foo/foe' asFilename exists     
+        '/not_existing' asFilename isDirectory 
+        '/foo/bar' asFilename isReadable 
 
     (all of the above examples will probably return false on your machine ;-).
 
     examples:
 
-	'Makefile' asFilename readStream
+        'Makefile' asFilename readStream
+
+        'newFile' asFilename writeStream
+
+        Filename newTemporary writeStream
 
-	'newFile' asFilename writeStream
+    [author:]
+        Claus Gittinger
 
-	Filename newTemporary writeStream
+    [see also:]
+        String
+        FileStream DirectoryStream PipeStream Socket
+        OperatingSystem
+        Date Time
 "
 !
 
@@ -1891,5 +1900,5 @@
 !Filename class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Filename.st,v 1.55 1996-04-19 12:42:52 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Filename.st,v 1.56 1996-04-25 16:01:07 cg Exp $'
 ! !