summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libmath.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1999-04-21 16:29:57 (GMT)
committerFred Drake <fdrake@acm.org>1999-04-21 16:29:57 (GMT)
commit69fa56327ac33bf0258b24e238076e92163ca21e (patch)
treee7fed6b25acfde8c319e7a24f843565df3239d01 /Doc/lib/libmath.tex
parent8307e21a2a7486233da4ac4daa0f64562c900ddb (diff)
downloadcpython-69fa56327ac33bf0258b24e238076e92163ca21e.zip
cpython-69fa56327ac33bf0258b24e238076e92163ca21e.tar.gz
cpython-69fa56327ac33bf0258b24e238076e92163ca21e.tar.bz2
Markup nits.
Diffstat (limited to 'Doc/lib/libmath.tex')
-rw-r--r--Doc/lib/libmath.tex13
1 files changed, 5 insertions, 8 deletions
diff --git a/Doc/lib/libmath.tex b/Doc/lib/libmath.tex
index 7addda4..0a45fb3 100644
--- a/Doc/lib/libmath.tex
+++ b/Doc/lib/libmath.tex
@@ -1,14 +1,11 @@
\section{\module{math} ---
- Mathematical functions (\function{sin()} etc.).}
-\declaremodule{builtin}{math}
-
+ Mathematical functions}
+\declaremodule{builtin}{math}
\modulesynopsis{Mathematical functions (\function{sin()} etc.).}
-This module is always available.
-It provides access to the mathematical functions defined by the \C{}
-standard.
-They are:
+This module is always available. It provides access to the
+mathematical functions defined by the C standard. They are:
\begin{funcdesc}{acos}{x}
Return the arc cosine of \var{x}.
@@ -105,7 +102,7 @@ Return the hyperbolic tangent of \var{x}.
\end{funcdesc}
Note that \function{frexp()} and \function{modf()} have a different
-call/return pattern than their \C{} equivalents: they take a single
+call/return pattern than their C equivalents: they take a single
argument and return a pair of values, rather than returning their
second return value through an `output parameter' (there is no such
thing in Python).