summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--numpy/random/_generator.pyx6
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/random/_generator.pyx b/numpy/random/_generator.pyx
index f65fc5d8b..c33c55580 100644
--- a/numpy/random/_generator.pyx
+++ b/numpy/random/_generator.pyx
@@ -242,10 +242,10 @@ 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 `uniform` or multiply
- the output of `random` by `(b-a)` and add `a`::
+ 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
+ (b - a) * random() + a
Parameters
----------