summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1998-12-08 16:10:44 (GMT)
committerFred Drake <fdrake@acm.org>1998-12-08 16:10:44 (GMT)
commit64583d3f87d9984fe27f45f4cdf380677c662707 (patch)
tree26a295479da4c688b5ef7b5e4a57c549391161c4
parent204b65c50ffcbe62ae3b38b4dbb82ae875fb568d (diff)
downloadcpython-64583d3f87d9984fe27f45f4cdf380677c662707.zip
cpython-64583d3f87d9984fe27f45f4cdf380677c662707.tar.gz
cpython-64583d3f87d9984fe27f45f4cdf380677c662707.tar.bz2
Rename the parameters of atan2(), based on comments from Guido & Peter
A. Koren <pkoren@hex.net>.
-rw-r--r--Doc/lib/libmath.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libmath.tex b/Doc/lib/libmath.tex
index 49bc226..7addda4 100644
--- a/Doc/lib/libmath.tex
+++ b/Doc/lib/libmath.tex
@@ -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}