From: Raymond Hettinger Date: Mon, 13 May 2002 23:47:02 +0000 (+0000) Subject: Closes SF bug 527139. Brings docs inline with random.py 1.26.6.1 X-Git-Tag: v2.2.2b1~371 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=33d7df84efe66b15c38b7d77c006465c7e850c08;p=thirdparty%2FPython%2Fcpython.git Closes SF bug 527139. Brings docs inline with random.py 1.26.6.1 which fixed the unnecessarily restricted method domain. --- diff --git a/Doc/lib/librandom.tex b/Doc/lib/librandom.tex index 47fea4f72074..3a12ae618b49 100644 --- a/Doc/lib/librandom.tex +++ b/Doc/lib/librandom.tex @@ -218,7 +218,7 @@ these equations can be found in any statistics text. \begin{funcdesc}{gammavariate}{alpha, beta} Gamma distribution. (\emph{Not} the gamma function!) Conditions on - the parameters are \code{\var{alpha} >= 0.5} and \code{\var{beta} > 0}. + the parameters are \code{\var{alpha} > 0} and \code{\var{beta} > 0}. \end{funcdesc} \begin{funcdesc}{gauss}{mu, sigma}