Fix typo in between? stack effect docs

db4
Doug Coleman 2010-05-05 02:06:03 -05:00
parent 020c011d00
commit 23b3535053
1 changed files with 1 additions and 1 deletions

View File

@ -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." } ;