From a9d19946a1f1b102fbb730b557fac80bfbabc782 Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Sun, 25 Feb 2024 22:50:49 -0500 Subject: [PATCH] gh-115921: Change 'equation' to 'expression' in random.rst (GH-115927) In uniform function entry. (cherry picked from commit de0b4f95cbfe1f868514029289597204074c05c8) Co-authored-by: Terry Jan Reedy --- Doc/library/random.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Doc/library/random.rst b/Doc/library/random.rst index 88d4836939e749..14744c12c03bca 100644 --- a/Doc/library/random.rst +++ b/Doc/library/random.rst @@ -280,7 +280,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)