diff options
| author | Fred Drake <fdrake@acm.org> | 1998-12-08 16:10:44 +0000 |
|---|---|---|
| committer | Fred Drake <fdrake@acm.org> | 1998-12-08 16:10:44 +0000 |
| commit | 64583d3f87d9984fe27f45f4cdf380677c662707 (patch) | |
| tree | 26a295479da4c688b5ef7b5e4a57c549391161c4 /Doc/lib/libmath.tex | |
| parent | 204b65c50ffcbe62ae3b38b4dbb82ae875fb568d (diff) | |
| download | cpython-git-64583d3f87d9984fe27f45f4cdf380677c662707.tar.gz | |
Rename the parameters of atan2(), based on comments from Guido & Peter
A. Koren <pkoren@hex.net>.
Diffstat (limited to 'Doc/lib/libmath.tex')
| -rw-r--r-- | Doc/lib/libmath.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libmath.tex b/Doc/lib/libmath.tex index 49bc22664f..7addda43b7 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} |
