Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Doc/library/random.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down