From 31d86e300cf0ade1ee73657449c95fd349d62414 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Wed, 11 Feb 2009 13:56:54 -0600 Subject: [PATCH] fix html help-lint --- basis/html/html-docs.factor | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/basis/html/html-docs.factor b/basis/html/html-docs.factor index 8c4b2934d0..83fe4d3a63 100644 --- a/basis/html/html-docs.factor +++ b/basis/html/html-docs.factor @@ -1,6 +1,7 @@ +USING: help.markup help.syntax strings xml.data ; IN: html -USING: help.markup help.syntax strings ; HELP: simple-page -{ $values { "title" string } { "head" "XML data" } { "body" "XML data" } } -{ $description "Constructs a simple XHTML page with a " { $snippet "head" } " and " { $snippet "body" } " tag. The given XML data is spliced into the two child tags, and a title is also added to the head tag." } ; \ No newline at end of file +{ $values { "title" string } { "head" "XML data" } { "body" "XML data" } +{ "xml" xml } } +{ $description "Constructs a simple XHTML page with a " { $snippet "head" } " and " { $snippet "body" } " tag. The given XML data is spliced into the two child tags, and a title is also added to the head tag." } ;