]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Markup nits.
authorFred Drake <fdrake@acm.org>
Wed, 21 Apr 1999 16:29:57 +0000 (16:29 +0000)
committerFred Drake <fdrake@acm.org>
Wed, 21 Apr 1999 16:29:57 +0000 (16:29 +0000)
Doc/lib/libmath.tex

index 7addda43b7afe9165d306063b0e6fe290ebf53dc..0a45fb3a2d0cddf5b59b19ed8a52f41736f81010 100644 (file)
@@ -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).