From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 26 Feb 2024 03:57:48 +0000 (+0100) Subject: [3.11] gh-115921: Change 'equation' to 'expression' in random.rst (GH-115927) (#115929) X-Git-Tag: v3.11.9~144 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f822070e7ac2a1283df63f34dd103d4b7ac87aea;p=thirdparty%2FPython%2Fcpython.git [3.11] gh-115921: Change 'equation' to 'expression' in random.rst (GH-115927) (#115929) In uniform function entry. (cherry picked from commit de0b4f95cbfe1f868514029289597204074c05c8) Co-authored-by: Terry Jan Reedy --- diff --git a/Doc/library/random.rst b/Doc/library/random.rst index 88d4836939e7..14744c12c03b 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)