]> gitweb.factorcode.org Git - factor.git/commitdiff
math.order: improve docs for invert-comparison.
authorJohn Benediktsson <mrjbq7@gmail.com>
Fri, 14 Sep 2012 16:45:03 +0000 (09:45 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Fri, 14 Sep 2012 16:45:03 +0000 (09:45 -0700)
core/math/order/order-docs.factor

index efce6c357095ad2148c2ce7c7b7279c652f5db05..ba80b8449e3e1579086f7c6db09b08451d49aac1 100644 (file)
@@ -31,7 +31,7 @@ HELP: +gt+
 { $description "Output by " { $link <=> } " when the first object is strictly greater than the second object." } ;
 
 HELP: invert-comparison
-{ $values { "<=>" symbol } { ">=<" symbol } }
+{ $values { "<=>" "an ordering specifier" } { ">=<" "an ordering specifier" } }
 { $description "Invert the comparison symbol returned by " { $link <=> } "." }
 { $examples
     { $example "USING: math.order prettyprint ;" "+lt+ invert-comparison ." "+gt+" } } ;