diff options
author | Raymond Hettinger <python@rcn.com> | 2007-01-19 18:03:13 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2007-01-19 18:03:13 (GMT) |
commit | 3b77d3d9a728b029657489bdc9a0c688ebcceaee (patch) | |
tree | 0f2a450aa11d064d5e2b837507a581bfe02fdca8 /Doc | |
parent | d266f7a38cf00116ced3985e70b78ae1002c92af (diff) | |
download | cpython-3b77d3d9a728b029657489bdc9a0c688ebcceaee.zip cpython-3b77d3d9a728b029657489bdc9a0c688ebcceaee.tar.gz cpython-3b77d3d9a728b029657489bdc9a0c688ebcceaee.tar.bz2 |
SF# 1635892: Fix docs for betavariate's input parameters .
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 c6b8846..78c536b 100644 --- a/Doc/lib/librandom.tex +++ b/Doc/lib/librandom.tex @@ -185,7 +185,7 @@ these equations can be found in any statistics text. \begin{funcdesc}{betavariate}{alpha, beta} Beta distribution. Conditions on the parameters are - \code{\var{alpha} > -1} and \code{\var{beta} > -1}. + \code{\var{alpha} > 0} and \code{\var{beta} > 0}. Returned values range between 0 and 1. \end{funcdesc} |