From 64e9e179b2bdb7d7988c4260d9bd60d2315b6751 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Tue, 8 Mar 2011 16:50:12 -0800 Subject: [PATCH] xml.writer: fix some docs. --- basis/xml/writer/writer-docs.factor | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/basis/xml/writer/writer-docs.factor b/basis/xml/writer/writer-docs.factor index 17d9880bb3..5b66b021bd 100644 --- a/basis/xml/writer/writer-docs.factor +++ b/basis/xml/writer/writer-docs.factor @@ -30,17 +30,17 @@ HELP: xml>string HELP: pprint-xml>string { $values { "xml" "an XML document" } { "string" "a string" } } -{ $description "converts an XML document into a string in a prettyprinted form." } +{ $description "Converts an XML document into a string in a prettyprinted form." } { $notes "This does not preserve what type of quotes were used or what data was omitted from version declaration, as that information isn't present in the XML data representation. The whitespace in the text nodes of the original document is preserved." } ; HELP: write-xml { $values { "xml" "an XML document" } } -{ $description "prints the contents of an XML document to " { $link output-stream } "." } +{ $description "Prints the contents of an XML document to " { $link output-stream } "." } { $notes "This does not preserve what type of quotes were used or what data was omitted from version declaration, as that information isn't present in the XML data representation. The whitespace in the text nodes of the original document is preserved." } ; HELP: pprint-xml { $values { "xml" "an XML document" } } -{ $description "prints the contents of an XML document to " { $link output-stream } " in a prettyprinted form." } +{ $description "Prints the contents of an XML document to " { $link output-stream } " in a prettyprinted form." } { $notes "This does not preserve what type of quotes were used or what data was omitted from version declaration, as that information isn't present in the XML data representation. Whitespace is also not preserved." } ; { xml>string write-xml pprint-xml pprint-xml>string } related-words