]> gitweb.factorcode.org Git - factor.git/commitdiff
html.templates: fix typo in description of template-convert word
authorKeita Haga <keitahaga@mail.com>
Sun, 16 Jan 2011 16:36:08 +0000 (01:36 +0900)
committerKeita Haga <keitahaga@mail.com>
Sun, 16 Jan 2011 16:51:48 +0000 (01:51 +0900)
basis/html/templates/templates-docs.factor

index c95c342f955f7dc02c363c092ce9b9dbb5aad244..6578f4843f76ca87ece976188f1faef13934bd6f 100644 (file)
@@ -1,6 +1,6 @@
+USING: continuations help.markup help.syntax io quotations
+strings urls xml.data ;
 IN: html.templates
-USING: help.markup help.syntax io strings quotations xml.data
-continuations urls ;
 
 HELP: template
 { $class-description "The class of HTML templates." } ;
@@ -56,7 +56,7 @@ HELP: with-boilerplate
 
 HELP: template-convert
 { $values { "template" template } { "output" "a pathname string" } }
-{ $description "Calls the template and writes its output to a file with UTF8 encoding." } ;
+{ $description "Calls the template and writes its output to a file with UTF-8 encoding." } ;
 
 ARTICLE: "html.templates.boilerplate" "Boilerplate support"
 "The following words define the interface between a templating engine and the " { $vocab-link "furnace.boilerplate" } " vocabulary."