]> gitweb.factorcode.org Git - factor.git/commitdiff
Minor documentation fixes.
authorAlexander Iljin <ajsoft@yandex.ru>
Wed, 16 Sep 2015 15:09:03 +0000 (18:09 +0300)
committerJohn Benediktsson <mrjbq7@gmail.com>
Tue, 29 Sep 2015 16:12:29 +0000 (09:12 -0700)
basis/io/files/info/info-docs.factor
basis/xml/data/data-docs.factor

index e54588a1b507839bb819a3a5b4bba862b7d1bd21..8d0b6c52b34b0c9ed131cafc492a6fc11dde8b67 100644 (file)
@@ -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
index 2e73d606aadfdf349a9226ebb003e7ba40e06615..d2574bfc87f71efede348199f35a7305568616aa 100644 (file)
@@ -101,7 +101,7 @@ HELP: xml
 HELP: <xml>
 { $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 <tag> } ;
 
 HELP: prolog