summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2024-02-26 03:50:49 (GMT)
committerGitHub <noreply@github.com>2024-02-26 03:50:49 (GMT)
commitde0b4f95cbfe1f868514029289597204074c05c8 (patch)
treeac3c44935809005fe648cec7af0786ca3d125ca3 /Doc
parentbee7bb3310b356e99e3a0f75f23efbc97f1b0a24 (diff)
downloadcpython-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.rst3
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)