]> gitweb.factorcode.org Git - factor.git/commitdiff
Fix typo
authorslava <slava@factorcode.org>
Tue, 14 Nov 2006 23:52:01 +0000 (23:52 +0000)
committerslava <slava@factorcode.org>
Tue, 14 Nov 2006 23:52:01 +0000 (23:52 +0000)
library/io/files.facts

index bf38e93a1acf41cfe7432002b66924f14d0f911d..ab559ee9b5761d0fdd9b7ac9a37b02a08a3af10f 100644 (file)
@@ -11,7 +11,7 @@ HELP: cd ( path -- )
 { $see-also cwd } ;
 
 HELP: stat ( path -- directory? length permissions modified )
-{ $values { "path" "a path name string" } { "directory?" "boolean indicating if the file is a directory" } { "length" "the length in bytes as an integer" } { "permissions" "a Unix permission bitmap (0 on Windows" } { "the last modification time, as milliseconds since midnight, January 1st 1970 GMT" } }
+{ $values { "path" "a path name string" } { "directory?" "boolean indicating if the file is a directory" } { "length" "the length in bytes as an integer" } { "permissions" "a Unix permission bitmap (0 on Windows" } { "modified" "the last modification time, as milliseconds since midnight, January 1st 1970 GMT" } }
 { $description
     "Queries the file system for file meta data. If the file does not exist, outputs " { $link f } " for all four values."
 }