diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-04-28 21:32:03 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-04-28 21:32:03 (GMT) |
commit | a1af767c4d6d8343bababf60860bec2b0886a2d5 (patch) | |
tree | 6af02a45e8734d0daaa4cbbadae4e34a8e66cd7f | |
parent | 2b6dfec1cccee1d9aa91d986cebcaa5d651438c7 (diff) | |
download | cpython-a1af767c4d6d8343bababf60860bec2b0886a2d5.zip cpython-a1af767c4d6d8343bababf60860bec2b0886a2d5.tar.gz cpython-a1af767c4d6d8343bababf60860bec2b0886a2d5.tar.bz2 |
Reworded fabs() for consistency with the others. Noted that all
return values are floats.
-rw-r--r-- | Doc/lib/libmath.tex | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/lib/libmath.tex b/Doc/lib/libmath.tex index dc917c6..a9cbc77 100644 --- a/Doc/lib/libmath.tex +++ b/Doc/lib/libmath.tex @@ -17,7 +17,8 @@ complex result allows earlier detection of the unexpected complex number used as a parameter, so that the programmer can determine how and why it was generated in the first place. -The following functions are provided by this module: +The following functions are provided by this module. Except +when explicitly noted otherwise, all return values are floats: \begin{funcdesc}{acos}{x} Return the arc cosine of \var{x}. @@ -56,7 +57,7 @@ Return \code{e**\var{x}}. \end{funcdesc} \begin{funcdesc}{fabs}{x} -Return the absolute value of the floating point number \var{x}. +Return the absolute value of \var{x}. \end{funcdesc} \begin{funcdesc}{floor}{x} |