summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/library/random.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/random.rst b/Doc/library/random.rst
index d0ced24..8fbce18 100644
--- a/Doc/library/random.rst
+++ b/Doc/library/random.rst
@@ -301,7 +301,8 @@ be found in any statistics text.
``a <= b`` and ``b <= N <= a`` for ``b < a``.
The end-point value ``b`` may or may not be included in the range
- depending on floating-point rounding in the equation ``a + (b-a) * random()``.
+ depending on floating-point rounding in the expression
+ ``a + (b-a) * random()``.
.. function:: triangular(low, high, mode)