From 4016c2066ca92f89363943bda2b24f04d359c6aa Mon Sep 17 00:00:00 2001 From: slava Date: Tue, 14 Nov 2006 23:52:01 +0000 Subject: [PATCH] Fix typo --- library/io/files.facts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/io/files.facts b/library/io/files.facts index bf38e93a1a..ab559ee9b5 100644 --- a/library/io/files.facts +++ b/library/io/files.facts @@ -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." }