diff --git a/basis/io/files/info/info-docs.factor b/basis/io/files/info/info-docs.factor index e54588a1b5..8d0b6c52b3 100644 --- a/basis/io/files/info/info-docs.factor +++ b/basis/io/files/info/info-docs.factor @@ -2,7 +2,7 @@ USING: arrays help.markup help.syntax kernel io.files ; IN: io.files.info HELP: file-info -{ $values { "path" "a pathname string" } { "info" file-info } } +{ $values { "path" "a pathname string" } { "info" file-info-tuple } } { $description "Queries the file system for metadata. If " { $snippet "path" } " refers to a symbolic link, it is followed. See the article " { $link "file-types" } " for a list of metadata symbols." } { $errors "Throws an error if the file does not exist." } ; @@ -31,7 +31,7 @@ HELP: file-systems HELP: file-system-info { $values { "path" "a pathname string" } -{ "file-system-info" file-system-info } } +{ "file-system-info" file-system-info-tuple } } { $description "Returns a platform-specific object describing the file-system that contains the path. The cross-platform slot is " { $slot "free-space" } "." } { $examples { $unchecked-example diff --git a/basis/xml/data/data-docs.factor b/basis/xml/data/data-docs.factor index 2e73d606aa..d2574bfc87 100644 --- a/basis/xml/data/data-docs.factor +++ b/basis/xml/data/data-docs.factor @@ -101,7 +101,7 @@ HELP: xml HELP: { $values { "prolog" "an XML prolog" } { "before" "a sequence of XML elements" } { "body" tag } { "after" "a sequence of XML elements" } { "xml" "an XML document" } } -{ $description "Creates an XML document. The " { $snippet "before" } " and " { $snippet "after" } " slots store what comes before and after the main tag, and " { $snippet "body" } "contains the main tag itself." } +{ $description "Creates an XML document. The " { $snippet "before" } " and " { $snippet "after" } " slots store what comes before and after the main tag, and " { $snippet "body" } " contains the main tag itself." } { $see-also xml } ; HELP: prolog