]> gitweb.factorcode.org Git - factor.git/commitdiff
combinators: insert a space after a comma in the documentation
authorKeita Haga <keitahaga@mail.com>
Fri, 4 Feb 2011 12:04:08 +0000 (21:04 +0900)
committerKeita Haga <keitahaga@mail.com>
Fri, 4 Feb 2011 12:04:08 +0000 (21:04 +0900)
core/combinators/combinators-docs.factor

index f408a44257c7bb45c3e40e321f11aba268d903f1..28ef4a764fa0a4447acae5c8b8e608840f64838b 100644 (file)
@@ -342,7 +342,7 @@ HELP: no-cond
 { $error-description "Thrown by " { $link cond } " if none of the test quotations yield a true value. Some uses of " { $link cond } " include a default case where the test quotation is " { $snippet "[ t ]" } "; such a " { $link cond } " form will never throw this error." } ;
 
 HELP: case
-{ $values { "obj" object } { "assoc" "a sequence of object/word,quotation pairs, with an optional quotation at the end" } }
+{ $values { "obj" object } { "assoc" "a sequence of object/word, quotation pairs, with an optional quotation at the end" } }
 { $description
     "Compares " { $snippet "obj" } " against the first element of every pair, first evaluating the first element if it is a word. If some pair matches, removes " { $snippet "obj" } " from the stack and calls the second element of that pair, which must be a quotation."
     $nl