diff options
author | Fred Drake <fdrake@acm.org> | 2000-12-18 13:50:24 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-12-18 13:50:24 (GMT) |
commit | 2b6d7bc151d4d15efc8bc428d51cea3286305f41 (patch) | |
tree | b4243280b4083b18b7de3d2acefcfb5210466a7a /Doc | |
parent | e9e860faf36e0e75c4012a6ade881f8728d44723 (diff) | |
download | cpython-2b6d7bc151d4d15efc8bc428d51cea3286305f41.zip cpython-2b6d7bc151d4d15efc8bc428d51cea3286305f41.tar.gz cpython-2b6d7bc151d4d15efc8bc428d51cea3286305f41.tar.bz2 |
Do not talk about "real" numbers; talk about "floats" or "floating point
numbers" instead; we have not described "reals" anywhere else in the
documentation, and this is not the place to change the story!
Reported by Keith Briggs <keith.briggs@bt.com>.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libmath.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/lib/libmath.tex b/Doc/lib/libmath.tex index 6edf502..0f286d4 100644 --- a/Doc/lib/libmath.tex +++ b/Doc/lib/libmath.tex @@ -36,7 +36,7 @@ Return \code{atan(\var{y} / \var{x})}. \end{funcdesc} \begin{funcdesc}{ceil}{x} -Return the ceiling of \var{x} as a real. +Return the ceiling of \var{x} as a float. \end{funcdesc} \begin{funcdesc}{cos}{x} @@ -52,11 +52,11 @@ Return \code{e**\var{x}}. \end{funcdesc} \begin{funcdesc}{fabs}{x} -Return the absolute value of the real \var{x}. +Return the absolute value of the floating point number \var{x}. \end{funcdesc} \begin{funcdesc}{floor}{x} -Return the floor of \var{x} as a real. +Return the floor of \var{x} as a float. \end{funcdesc} \begin{funcdesc}{fmod}{x, y} @@ -92,7 +92,7 @@ Return the base-10 logarithm of \var{x}. \begin{funcdesc}{modf}{x} Return the fractional and integer parts of \var{x}. Both results -carry the sign of \var{x}. The integer part is returned as a real. +carry the sign of \var{x}. The integer part is returned as a float. \end{funcdesc} \begin{funcdesc}{pow}{x, y} |