summaryrefslogtreecommitdiff
path: root/numpy/random
diff options
context:
space:
mode:
authorBram <b.t.ton@saxion.nl>2022-07-08 12:18:04 +0200
committerBram <b.t.ton@saxion.nl>2022-07-08 12:18:04 +0200
commit5376be2084eb93962d33df921775747e338ce521 (patch)
tree2680e19022a18345d547e7d38dfd721407facac2 /numpy/random
parente472fec0ecfec531a12a50d59614c2597f67877a (diff)
downloadnumpy-5376be2084eb93962d33df921775747e338ce521.tar.gz
Links suddenly working
Diffstat (limited to 'numpy/random')
-rw-r--r--numpy/random/_generator.pyx4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/random/_generator.pyx b/numpy/random/_generator.pyx
index caa041d55..f65fc5d8b 100644
--- a/numpy/random/_generator.pyx
+++ b/numpy/random/_generator.pyx
@@ -242,7 +242,7 @@ cdef class Generator:
Return random floats in the half-open interval [0.0, 1.0).
Results are from the "continuous uniform" distribution over the
- stated interval. To sample :math:`Unif[a, b), b > a` use `~.Generator.uniform` or multiply
+ stated interval. To sample :math:`Unif[a, b), b > a` use `uniform` or multiply
the output of `random` by `(b-a)` and add `a`::
(b - a) * random() + a
@@ -269,7 +269,7 @@ cdef class Generator:
See Also
--------
- `~.Generator.uniform` : Drawn samples from the parameterized uniform distribution.
+ uniform : Draw samples from the parameterized uniform distribution.
Examples
--------