]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/unicode/case/case-docs.factor
improve help by linking to types directly.
[factor.git] / basis / unicode / case / case-docs.factor
index 7e4ac10e19b01cf10bf66c1dea97940f593d747d..845eadc84a602119664830b4cbb0b18bfe71968d 100644 (file)
@@ -1,4 +1,4 @@
-USING: help.syntax help.markup strings ;
+USING: help.syntax help.markup kernel strings ;
 IN: unicode.case
 
 ABOUT: "unicode.case"
@@ -39,17 +39,17 @@ HELP: >case-fold
 { $description "Converts a string to case-folded form." } ;
 
 HELP: upper?
-{ $values { "string" string } { "?" "a boolean" } }
+{ $values { "string" string } { "?" boolean } }
 { $description "Tests if a string is in upper case." } ;
 
 HELP: lower?
-{ $values { "string" string } { "?" "a boolean" } }
+{ $values { "string" string } { "?" boolean } }
 { $description "Tests if a string is in lower case." } ;
 
 HELP: title?
-{ $values { "string" string } { "?" "a boolean" } }
+{ $values { "string" string } { "?" boolean } }
 { $description "Tests if a string is in title case." } ;
 
 HELP: case-fold?
-{ $values { "string" string } { "?" "a boolean" } }
+{ $values { "string" string } { "?" boolean } }
 { $description "Tests if a string is in case-folded form." } ;