From 8f88467ad37e410f517fd47a7e79e4dfd0fefb32 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Tue, 11 Aug 2009 18:15:24 -0500 Subject: [PATCH] fix sgn docs --- core/math/math-docs.factor | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/math/math-docs.factor b/core/math/math-docs.factor index 55a50cd5d7..c4a1bb4f34 100644 --- a/core/math/math-docs.factor +++ b/core/math/math-docs.factor @@ -213,9 +213,9 @@ HELP: sgn { $description "Outputs one of the following:" { $list - "-1 if " { $snippet "x" } " is negative" - "0 if " { $snippet "x" } " is equal to 0" - "1 if " { $snippet "x" } " is positive" + { "-1 if " { $snippet "x" } " is negative" } + { "0 if " { $snippet "x" } " is equal to 0" } + { "1 if " { $snippet "x" } " is positive" } } } ;