From ebfce1deea3fc137c65634392ae488bfee61dd96 Mon Sep 17 00:00:00 2001 From: Alexander Iljin <ajsoft@yandex.ru> Date: Thu, 21 Jul 2016 10:14:44 +0300 Subject: [PATCH] io.files.info-docs: fix links to file-info-tuple parameters --- basis/io/files/info/info-docs.factor | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/basis/io/files/info/info-docs.factor b/basis/io/files/info/info-docs.factor index 87ca59b3c8..a0ca4c6cb0 100644 --- a/basis/io/files/info/info-docs.factor +++ b/basis/io/files/info/info-docs.factor @@ -11,18 +11,18 @@ HELP: link-info { $description "Queries the file system for metadata. If " { $snippet "path" } " refers to a symbolic link, information about the symbolic link itself is returned. See the article " { $link "file-types" } " for a list of metadata symbols." } { $errors "Throws an error if the file does not exist." } ; -{ file-info link-info } related-words +{ file-info link-info file-info-tuple } related-words HELP: directory? -{ $values { "file-info" file-info } { "?" boolean } } +{ $values { "file-info" file-info-tuple } { "?" boolean } } { $description "Tests if " { $snippet "file-info" } " is a directory." } ; HELP: regular-file? -{ $values { "file-info" file-info } { "?" boolean } } +{ $values { "file-info" file-info-tuple } { "?" boolean } } { $description "Tests if " { $snippet "file-info" } " is a normal file." } ; HELP: symbolic-link? -{ $values { "file-info" file-info } { "?" boolean } } +{ $values { "file-info" file-info-tuple } { "?" boolean } } { $description "Tests if " { $snippet "file-info" } " is a symbolic link." } ; HELP: file-systems