]> gitweb.factorcode.org Git - factor.git/commitdiff
english.docs: fix $keep-case usage
authorrazetime <rraghu.11502@gmail.com>
Thu, 5 Oct 2023 15:35:29 +0000 (23:35 +0800)
committerrazetime <rraghu.11502@gmail.com>
Thu, 5 Oct 2023 15:35:29 +0000 (23:35 +0800)
basis/english/english-docs.factor

index af563758edc355e5d3a885c932bbfaf91da65601..7d51c6a891995a776f3431494a3bcabb69d67b66 100644 (file)
@@ -37,7 +37,7 @@ $nl
 HELP: singularize
 { $values { "word" string } { "singular" string } }
 { $description "Determine the singular form of the input English word. If the input is already singular, it is returned unchanged." }
-{ $notes $keep-case  }
+{ $notes { $keep-case } }
 { $examples
     { $example
         "USING: english io ;"
@@ -177,7 +177,7 @@ HELP: comma-list
     { "clause-seq" sequence }
 }
 { $description "Generate a comma-separated list of things, emplacing " { $snippet "conjunction" } " before the last " { $snippet "part" } " if there are two or more elements in " { $snippet "parts" } "." }
-{ $notes $keep-case }
+{ $notes { $keep-case } }
 { $examples
     { $example
         "USING: english io sequences ;"