Rename the parameters of atan2(), based on comments from Guido & Peter

A. Koren <pkoren@hex.net>.
This commit is contained in:
Fred Drake 1998-12-08 16:10:44 +00:00
parent 204b65c50f
commit 64583d3f87
1 changed files with 2 additions and 2 deletions

View File

@ -22,8 +22,8 @@ Return the arc sine of \var{x}.
Return the arc tangent of \var{x}.
\end{funcdesc}
\begin{funcdesc}{atan2}{x, y}
Return \code{atan(\var{x} / \var{y})}.
\begin{funcdesc}{atan2}{y, x}
Return \code{atan(\var{y} / \var{x})}.
\end{funcdesc}
\begin{funcdesc}{ceil}{x}