diff options
author | Matti Picus <matti.picus@gmail.com> | 2019-06-01 23:16:08 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-01 23:16:08 +0300 |
commit | f57fcb7fb0c5ca005a9dbc6fe050e0e628d611aa (patch) | |
tree | 86b4e27eb4591994ede3306dfac101ea19420b2b /numpy | |
parent | 3c71fffb15bedd4317bd92799d11fae035268e21 (diff) | |
parent | 4188f5653135f56a1e2ef4a682c1a3ac9501faab (diff) | |
download | numpy-f57fcb7fb0c5ca005a9dbc6fe050e0e628d611aa.tar.gz |
Merge pull request #13687 from bashtage/fix-12232
DOC: Remove misleading statement
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 -------- |