From 92b9b92f38e025ae2527d1446e680e1d75158249 Mon Sep 17 00:00:00 2001 From: Keita Haga Date: Sun, 16 Jan 2011 10:48:06 +0900 Subject: [PATCH] math.libm: add missing right parenthesis in description of fexp word --- basis/math/libm/libm-docs.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/math/libm/libm-docs.factor b/basis/math/libm/libm-docs.factor index 7dc6313b86..9b3930f346 100644 --- a/basis/math/libm/libm-docs.factor +++ b/basis/math/libm/libm-docs.factor @@ -69,7 +69,7 @@ HELP: fsinh HELP: fexp { $values { "x" real } { "double" real } } -{ $description "Calls the exponential function (" { $snippet "y=e^x" } " from the C standard library. User code should call " { $link exp } " instead." } ; +{ $description "Calls the exponential function (" { $snippet "y=e^x" } ") from the C standard library. User code should call " { $link exp } " instead." } ; HELP: flog { $values { "x" real } { "double" real } }