diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2024-02-26 03:50:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-26 03:50:49 (GMT) |
commit | de0b4f95cbfe1f868514029289597204074c05c8 (patch) | |
tree | ac3c44935809005fe648cec7af0786ca3d125ca3 /Doc | |
parent | bee7bb3310b356e99e3a0f75f23efbc97f1b0a24 (diff) | |
download | cpython-de0b4f95cbfe1f868514029289597204074c05c8.zip cpython-de0b4f95cbfe1f868514029289597204074c05c8.tar.gz cpython-de0b4f95cbfe1f868514029289597204074c05c8.tar.bz2 |
gh-115921: Change 'equation' to 'expression' in random.rst (#115927)
In uniform function entry.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/random.rst | 3 |
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) |