From b244cb32182d9a657105ab04eb98375460c69701 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Sat, 1 Oct 2022 20:32:21 -0400 Subject: [PATCH] (Machine Epsilon): Fix comment syntax in macheps definition. --- fp.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fp.texi b/fp.texi index 052e564..8824dd8 100644 --- a/fp.texi +++ b/fp.texi @@ -1198,7 +1198,7 @@ the constant @code{1.0} with a user-supplied value: double macheps (double x) @{ /* @r{Return machine epsilon for @var{x},} */ - @r{such that @var{x} + macheps (@var{x}) > @var{x}.} */ + /* @r{such that @var{x} + macheps (@var{x}) > @var{x}.} */ static const double base = 2.0; double eps;