diff options
author | Kevin Sheppard <kevin.k.sheppard@gmail.com> | 2019-06-01 14:12:33 +0900 |
---|---|---|
committer | Kevin Sheppard <kevin.k.sheppard@gmail.com> | 2019-06-01 14:12:33 +0900 |
commit | 4188f5653135f56a1e2ef4a682c1a3ac9501faab (patch) | |
tree | e7d8778086933097e90030f1fb2f32bc1a339cf9 /numpy | |
parent | 392866d1c8dce0abb8cb327a42f8e134f5d2a05e (diff) | |
download | numpy-4188f5653135f56a1e2ef4a682c1a3ac9501faab.tar.gz |
DOC: Remove misleading statement
Remove misleading statement about discrete non-integers
closes #12232
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/random/mtrand.pyx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/numpy/random/mtrand.pyx b/numpy/random/mtrand.pyx index 48ff6b0a6..732de7a56 100644 --- a/numpy/random/mtrand.pyx +++ b/numpy/random/mtrand.pyx @@ -571,8 +571,7 @@ cdef class RandomState: -------- random.random_integers : similar to `randint`, only for the closed interval [`low`, `high`], and 1 is the lowest value if `high` is - omitted. In particular, this other one is the one to use to generate - uniformly distributed discrete non-integers. + omitted. Examples -------- |