]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] gh-115921: Change 'equation' to 'expression' in random.rst (GH-115927) (#115928)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 26 Feb 2024 03:57:09 +0000 (04:57 +0100)
committerGitHub <noreply@github.com>
Mon, 26 Feb 2024 03:57:09 +0000 (03:57 +0000)
In uniform function entry.
(cherry picked from commit de0b4f95cbfe1f868514029289597204074c05c8)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Doc/library/random.rst

index d0ced2416c9578d78565e42acc781844feeefef3..8fbce18c56f17c921434108f7d4433516609719f 100644 (file)
@@ -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)