diff options
author | Ben North <ben@redfrontdoor.org> | 2016-10-20 17:50:18 +0100 |
---|---|---|
committer | Ben North <ben@redfrontdoor.org> | 2016-10-20 17:50:18 +0100 |
commit | 094513cb8cdc47129c7e9151d4743847e92e61b2 (patch) | |
tree | 39f96da2816a192f23a1b2d683e441be1a0f26fa /numpy/random | |
parent | d6f48249847f96d986377fc196dfdf629cd331d5 (diff) | |
download | numpy-094513cb8cdc47129c7e9151d4743847e92e61b2.tar.gz |
DOC: 'highest' is exclusive for randint()
Diffstat (limited to 'numpy/random')
-rw-r--r-- | numpy/random/mtrand/mtrand.pyx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/random/mtrand/mtrand.pyx b/numpy/random/mtrand/mtrand.pyx index 1c7ffe9d5..58f04515f 100644 --- a/numpy/random/mtrand/mtrand.pyx +++ b/numpy/random/mtrand/mtrand.pyx @@ -916,8 +916,8 @@ cdef class RandomState: ---------- low : int Lowest (signed) integer to be drawn from the distribution (unless - ``high=None``, in which case this parameter is the *highest* such - integer). + ``high=None``, in which case this parameter is one above the + *highest* such integer). high : int, optional If provided, one above the largest (signed) integer to be drawn from the distribution (see above for behavior if ``high=None``). |