From 23b353505398af82057ac69c26615699530bfab8 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Wed, 5 May 2010 02:06:03 -0500 Subject: [PATCH] Fix typo in between? stack effect docs --- 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 418107fcd1..4c5bc381cc 100644 --- a/core/math/order/order-docs.factor +++ b/core/math/order/order-docs.factor @@ -58,7 +58,7 @@ HELP: clamp { $description "Outputs " { $snippet "x" } " if contained in the interval " { $snippet "[min,max]" } " or else outputs one of the endpoints." } ; HELP: between? -{ $values { "x" object } { "y" object } { "z" real } { "?" "a boolean" } } +{ $values { "x" object } { "y" object } { "z" object } { "?" "a boolean" } } { $description "Tests if " { $snippet "x" } " is in the interval " { $snippet "[y,z]" } "." } { $notes "As per the closed interval notation, the end-points are included in the interval." } ;