From e4b1417dd259f13f3464d92684402752d5bb8bff Mon Sep 17 00:00:00 2001 From: Joe Groff Date: Mon, 6 Jun 2011 16:27:56 -0700 Subject: [PATCH] math.functions: fix documentation for 10^ --- basis/math/functions/functions-docs.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/math/functions/functions-docs.factor b/basis/math/functions/functions-docs.factor index 5f7c066efa..414228b54e 100644 --- a/basis/math/functions/functions-docs.factor +++ b/basis/math/functions/functions-docs.factor @@ -267,7 +267,7 @@ HELP: nth-root HELP: 10^ { $values { "x" number } { "y" number } } -{ $description "Raises " { $snippet "x" } " to the power of 10. If " { $snippet "x" } " is an integer the answer is computed exactly, otherwise a floating point approximation is used." } ; +{ $description "Raises 10 to the power of " { $snippet "x" } ". If " { $snippet "x" } " is an integer the answer is computed exactly, otherwise a floating point approximation is used." } ; HELP: gcd { $values { "x" integer } { "y" integer } { "a" integer } { "d" integer } }