From: Raymond Hettinger Date: Mon, 13 May 2002 22:39:28 +0000 (+0000) Subject: Correct gammavariate's method name and domain. X-Git-Tag: v2.2.2b1~373 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1af110d59d3f6f680edad2d731b309f4be69509b;p=thirdparty%2FPython%2Fcpython.git Correct gammavariate's method name and domain. Partial solution to SF bug 527139. --- diff --git a/Doc/lib/librandom.tex b/Doc/lib/librandom.tex index bff9a7648b6d..47fea4f72074 100644 --- a/Doc/lib/librandom.tex +++ b/Doc/lib/librandom.tex @@ -216,9 +216,9 @@ these equations can be found in any statistics text. positive infinity. \end{funcdesc} -\begin{funcdesc}{gamma}{alpha, beta} +\begin{funcdesc}{gammavariate}{alpha, beta} Gamma distribution. (\emph{Not} the gamma function!) Conditions on - the parameters are \code{\var{alpha} > -1} and \code{\var{beta} > 0}. + the parameters are \code{\var{alpha} >= 0.5} and \code{\var{beta} > 0}. \end{funcdesc} \begin{funcdesc}{gauss}{mu, sigma}