From 7e3a5fc1b2004ef63ea1b2fc8780da43690e233e Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Fri, 14 Sep 2012 09:45:03 -0700 Subject: [PATCH] math.order: improve docs for invert-comparison. --- core/math/order/order-docs.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/math/order/order-docs.factor b/core/math/order/order-docs.factor index efce6c3570..ba80b8449e 100644 --- a/core/math/order/order-docs.factor +++ b/core/math/order/order-docs.factor @@ -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+" } } ;