aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancois-Xavier Coudert <fxcoudert@gcc.gnu.org>2024-08-20 18:42:31 +0200
committerFrancois-Xavier Coudert <fxcoudert@gcc.gnu.org>2024-08-28 15:53:05 +0200
commitbdcd30e4711943cae70a1b47f8a63e96a94c02a0 (patch)
treecad5154ff3bb62c867c37640c9f48ab8aee013b6
parent1c4b9826bd0d5ac471543c68f097d80b1969f599 (diff)
downloadgcc-bdcd30e4711943cae70a1b47f8a63e96a94c02a0.zip
gcc-bdcd30e4711943cae70a1b47f8a63e96a94c02a0.tar.gz
gcc-bdcd30e4711943cae70a1b47f8a63e96a94c02a0.tar.bz2
Libquadmath: update doc for some constants
libquadmath/ChangeLog: * libquadmath.texi (M_LOG2Eq, M_LOG10Eq, M_1_PIq, M_2_PIq, M_2_SQRTPIq, M_SQRT1_2q): Adjust descriptioni of these constants.
-rw-r--r--libquadmath/libquadmath.texi12
1 files changed, 6 insertions, 6 deletions
diff --git a/libquadmath/libquadmath.texi b/libquadmath/libquadmath.texi
index dc2a9ff..901ae55 100644
--- a/libquadmath/libquadmath.texi
+++ b/libquadmath/libquadmath.texi
@@ -118,18 +118,18 @@ The following mathematical constants of type @code{__float128} are defined.
@table @asis
@item @code{M_Eq}: the constant e (Euler's number)
-@item @code{M_LOG2Eq}: binary logarithm of 2
-@item @code{M_LOG10Eq}: common, decimal logarithm of 2
+@item @code{M_LOG2Eq}: base 2 logarithm of e
+@item @code{M_LOG10Eq}: decimal (base 10) logarithm of e
@item @code{M_LN2q}: natural logarithm of 2
@item @code{M_LN10q}: natural logarithm of 10
@item @code{M_PIq}: pi
@item @code{M_PI_2q}: pi divided by two
@item @code{M_PI_4q}: pi divided by four
-@item @code{M_1_PIq}: one over pi
-@item @code{M_2_PIq}: one over two pi
-@item @code{M_2_SQRTPIq}: two over square root of pi
+@item @code{M_1_PIq}: one divided by pi
+@item @code{M_2_PIq}: two divided by pi
+@item @code{M_2_SQRTPIq}: two divided by square root of pi
@item @code{M_SQRT2q}: square root of 2
-@item @code{M_SQRT1_2q}: one over square root of 2
+@item @code{M_SQRT1_2q}: one divided by square root of 2
@end table