diff options
author | Raymond Hettinger <python@rcn.com> | 2002-05-13 23:49:13 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2002-05-13 23:49:13 (GMT) |
commit | 576474c5ae0a42278262e7da96ebfa74754032b3 (patch) | |
tree | 5b9dc9761c90a785ff1f197b780d98cd90aceddb /Doc | |
parent | ca6cdc2c0259b1b74a3f4c2d29a35e76617a3019 (diff) | |
download | cpython-576474c5ae0a42278262e7da96ebfa74754032b3.zip cpython-576474c5ae0a42278262e7da96ebfa74754032b3.tar.gz cpython-576474c5ae0a42278262e7da96ebfa74754032b3.tar.bz2 |
Closes SF bug 527139. Brings docs inline with random.py 1.29
which fixes the unnecessarily restricted method domain.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/librandom.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/librandom.tex b/Doc/lib/librandom.tex index 47fea4f..3a12ae6 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} |