From: Terry Jan Reedy Date: Mon, 26 Feb 2024 03:50:49 +0000 (-0500) Subject: gh-115921: Change 'equation' to 'expression' in random.rst (#115927) X-Git-Tag: v3.13.0a5~240 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de0b4f95cbfe1f868514029289597204074c05c8;p=thirdparty%2FPython%2Fcpython.git gh-115921: Change 'equation' to 'expression' in random.rst (#115927) In uniform function entry. --- diff --git a/Doc/library/random.rst b/Doc/library/random.rst index d0ced2416c95..8fbce18c56f1 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)