#OTHER by cg
authorClaus Gittinger <cg@exept.de>
Mon, 13 Feb 2017 20:47:36 +0100
changeset 21441 ff5dc8186e55
parent 21440 f4962d3c833a
child 21442 632af5f20348
#OTHER by cg comment/format
Filename.st
--- a/Filename.st	Mon Feb 13 20:45:16 2017 +0100
+++ b/Filename.st	Mon Feb 13 20:47:36 2017 +0100
@@ -3805,7 +3805,7 @@
 
 removeDirectory
     "remove the directory.
-     Raises an exception if not successful (or if its not a directory).
+     Raises an exception if not successful (or if it's not a directory).
      Use #remove if it is not known if the receiver is a directory or file.
      Use #recursiveRemove in order to (recursively) remove non empty directories."
 
@@ -3837,13 +3837,14 @@
      ]
     "
 
-    "Modified: / 20.11.1997 / 17:40:22 / stefan"
-    "Modified: / 5.5.1999 / 13:41:12 / cg"
+    "Modified: / 20-11-1997 / 17:40:22 / stefan"
+    "Modified: / 05-05-1999 / 13:41:12 / cg"
+    "Modified (comment): / 13-02-2017 / 20:19:10 / cg"
 !
 
 removeFile
     "remove the file.
-     Raises an exception if not successful (or if its not a file).
+     Raises an exception if not successful (or if it's not a file).
      Use #remove if it is not known if the receiver is a directory or file.
      Use #recursiveRemove in order to (recursively) remove non empty directories."
 
@@ -3865,6 +3866,8 @@
      'foo' asFilename makeDirectory.
      'foo' asFilename removeFile
     "
+
+    "Modified (comment): / 13-02-2017 / 20:19:15 / cg"
 !
 
 renameTo:newName