Get rid of math mode in some places.

This commit is contained in:
Guido van Rossum 1997-11-25 01:00:40 +00:00
parent 3e1e274d0b
commit f259efe3d9
12 changed files with 18 additions and 18 deletions

View file

@ -37,7 +37,7 @@ Return the hyperbolic cosine of \var{x}.
\end{funcdesc}
\begin{funcdesc}{exp}{x}
Return the exponential value $\mbox{e}^x$.
Return \code{e**\var{x}}.
\end{funcdesc}
\begin{funcdesc}{fabs}{x}
@ -62,7 +62,7 @@ Return the Euclidean distance, \code{sqrt(x*x + y*y)}.
\end{funcdesc}
\begin{funcdesc}{ldexp}{x, i}
Return $x {\times} 2^i$.
Return \code{\var{x} * (2**\var{i})}.
\end{funcdesc}
\begin{funcdesc}{modf}{x}
@ -71,7 +71,7 @@ carry the sign of \var{x}.
\end{funcdesc}
\begin{funcdesc}{pow}{x, y}
Return $x^y$.
Return \code{\var{x}**\var{y}}.
\end{funcdesc}
\begin{funcdesc}{sin}{x}