commit | 440c0257262fec6f519bb81e49f1a4f341aeed66 | [log] [tgz] |
---|---|---|
author | Julien Palard <julien@palard.fr> | Mon May 03 11:20:54 2021 +0200 |
committer | GitHub <noreply@github.com> | Mon May 03 02:20:54 2021 -0700 |
tree | 8fd5f3ec6ffebee80077e1fc2c3ed61dbdf75dba | |
parent | 4ffd6fd2f13b3a7d32d41f64c38c455d491d4ca6 [diff] |
Doc: Fix random.uniform example comment. (GH-25784)
diff --git a/Doc/library/random.rst b/Doc/library/random.rst index 9f037a1..e924127 100644 --- a/Doc/library/random.rst +++ b/Doc/library/random.rst
@@ -419,7 +419,7 @@ >>> random() # Random float: 0.0 <= x < 1.0 0.37444887175646646 - >>> uniform(2.5, 10.0) # Random float: 2.5 <= x < 10.0 + >>> uniform(2.5, 10.0) # Random float: 2.5 <= x <= 10.0 3.1800146073117523 >>> expovariate(1 / 5) # Interval between arrivals averaging 5 seconds