From: Fred Drake Date: Tue, 8 Dec 1998 16:10:44 +0000 (+0000) Subject: Rename the parameters of atan2(), based on comments from Guido & Peter X-Git-Tag: v1.5.2b1~106 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=64583d3f87d9984fe27f45f4cdf380677c662707;p=python Rename the parameters of atan2(), based on comments from Guido & Peter A. Koren . --- 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}