summaryrefslogtreecommitdiff
path: root/numpy/random
diff options
context:
space:
mode:
authorSubhendu <subhendu.r.mishra@gmail.com>2018-04-14 03:36:05 +0530
committerCharles Harris <charlesr.harris@gmail.com>2018-04-13 16:06:05 -0600
commit9e419a0359cb5dbb9ae0b2711ab7a59b121a98cf (patch)
treea22c7f816d92d6eed31f56c3a737df9eec614786 /numpy/random
parent3ec88758813678aadedc58dbfd89646b05001a91 (diff)
downloadnumpy-9e419a0359cb5dbb9ae0b2711ab7a59b121a98cf.tar.gz
DOC, BUG : Bad link to `np.random.randint` (#10901)
* fixes #10886 : Bad link to `np.random.randint` * Issue #10886: Change from `np.random.randint` to `randint` in 'See Also` doc-string section of mtrand.pyx
Diffstat (limited to 'numpy/random')
-rw-r--r--numpy/random/mtrand/mtrand.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/mtrand/mtrand.pyx b/numpy/random/mtrand/mtrand.pyx
index 16d649c4a..536c585db 100644
--- a/numpy/random/mtrand/mtrand.pyx
+++ b/numpy/random/mtrand/mtrand.pyx
@@ -1457,7 +1457,7 @@ cdef class RandomState:
See Also
--------
- random.randint : Similar to `random_integers`, only for the half-open
+ randint : Similar to `random_integers`, only for the half-open
interval [`low`, `high`), and 0 is the lowest value if `high` is
omitted.