From 6452f75a3f358fa3a6cfdec0ddc7d7c52911c7b3 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Fri, 29 Aug 2008 17:03:36 -0500 Subject: [PATCH] fix docs --- basis/math/intervals/intervals-docs.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/math/intervals/intervals-docs.factor b/basis/math/intervals/intervals-docs.factor index b5cd231402..c5e5a6e7b8 100644 --- a/basis/math/intervals/intervals-docs.factor +++ b/basis/math/intervals/intervals-docs.factor @@ -88,7 +88,7 @@ ABOUT: "math-intervals" HELP: interval { $class-description "An interval represents a set of real numbers between two endpoints; the endpoints can either be included or excluded from the interval." $nl -"The " { $link interval-from } " and " { $link interval-to } " slots store endpoints, represented as arrays of the shape " { $snippet "{ number included? }" } "." +"The " { $snippet "from" } " and " { $snippet "to" } " slots store endpoints, represented as arrays of the shape " { $snippet "{ number included? }" } "." $nl "Intervals are created by calling " { $link [a,b] } ", " { $link (a,b) } ", " { $link [a,b) } ", " { $link (a,b] } " or " { $link [a,a] } "." } ;