mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Get rid of math mode in some places.
This commit is contained in:
parent
3e1e274d0b
commit
f259efe3d9
12 changed files with 18 additions and 18 deletions
|
@ -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}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue